<!--
function open_window(hauteur, largeur, theTarget)
{
var H = (screen.height - hauteur) / 2;
var L = (screen.width - largeur) / 2;
var handle=window.open(theTarget,"Popup","location=no,status=no,scrollbars=yes,resizable=no,height="+hauteur+",width="+largeur+",top="+H+",left="+L);
 	if(self.focus) 
		{
		handle.focus();
		} 
}
//  -->