
function popUp(theURL,winName,features) {
window.open(theURL,winName,features);
}
hauteur = screen.availHeight - 30;
largeur = screen.availWidth - 10;
pointx = (largeur - 350) / 2;
pointy = (hauteur - 450) / 2;
window.moveTo(pointx,pointy);
if (document.all) 
{
window.resizeTo(400,450);
}
else if (document.layers) 
{
if (window.outerHeight<450||window.outerWidth<350);
{
window.outerHeight = 450;
window.outerWidth = 350;
}
}

