// JavaScript Document
function openGallerie( basepath, gallerie, l, h, langue )
{
	window.open( basepath + "viewer.asp?gallerie=" + gallerie, "gallerie", 
		"width=" + l + ",height=" + h + ",scrollbars=0,resizable=yes,left=" + 
		((screen.width - l)/2) + ",top=" + ((screen.height - h)/2) ) ;
}

function openImage( image, l, h )
{
	var fenetre = window.open( "", "gallerie", 
		"width=" + l + ",height=" + h + ",scrollbars=0,resizable=yes,left=" + 
		((screen.width - l)/2) + ",top=" + ((screen.height - h)/2) );
	
	fenetre.document.open("text/html","replace");
	fenetre.document.write( "<html><body style=\"margin:0;padding:0;\">" );
	fenetre.document.write( "<center><img src=\"" + image + "\"></center>" );
	fenetre.document.write( "</body></html>" );
	
	fenetre.focus();
}

function helloWorld()
{
	alert( "test" );
}

function openPopup( url, l, h )
{
	var fenetre = window.open( url, "gallerie", 
		"width=" + l + ",height=" + h + ",scrollbars=0,resizable=yes,left=" + 
		((screen.width - l)/2) + ",top=" + ((screen.height - h)/2) );
	
	fenetre.focus();
}



