
document.observe('dom:loaded', function() {
	$('RequestA').observe('submit', RequestTest);
});

function RequestTest(event) {
	Event.stop(event);

	Lightview.show({
				   
		href: $('urlData').getValue(),
		rel: 'iframe',
		options:
		{
	  width: 990, 
	  height: 650,
			menubar: 'top',
			overflow: 'auto'
		}
	});
}



function currLocation(texte)
{
	alert(texte);
}

function newLocation(url)
{
	//	alert("new");
	window.top.location.href=url;
	//this.open('<?=$PortailNewURL?>');
}

