var fenetre=null;

function popUp(url,nom,longueur, largeur)
{
    if(largeur==null)
    {
        largeur=screen.height*0.8;
    }
    if(longueur==null)
    {
        longueur=screen.width*0.8;
    }
	var PositionGauche= (screen.width-longueur)/2;
	var PositionHaut= (screen.height-largeur)/2;

	fenetre=window.open(url,nom,'menubar=no,toolbar=no,scrollbars=yes,statusbar=no,resizable=yes,top='+PositionHaut+',left='+PositionGauche+',width='+longueur+',height='+largeur+'');
}

