<!--


var win = null;

function ouvrir_fenetre(url,nom,scroll,resize,width,height)
{
LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
settings ='height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize;
win = window.open(url,nom,settings);

}


//-->
