/* Popup Window */
function openwin(hauteur,largeur,nom,page) 	
{
openStandard(page,largeur,hauteur);
}

function openStandard(url,w,h) 
{
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no';
	popup = window.open(url,'remote',windowprops);
}

function openwin2(hauteur,largeur,nom,page) 	
{
openStandard2(page,largeur,hauteur);
}

function openStandard2(url,w,h) 
{
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=no';
	popup = window.open(url,'remote',windowprops);
}