// Ouvre une pop up vers une autre page (exemple : lien vers un autre site)
//=======================
function openWin(url, nom) {
//=======================
var MinWin, winOpts="width=480,height=380,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,location=yes"; 
MinWin = window.open(url, nom, winOpts);
if(navigator.appVersion.indexOf("(X11") != -1 || navigator.appVersion.indexOf("(Mac") != -1) MinWin = window.open(url, nom, winOpts);
}


function fenetreCent(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}
/*
								a mettre de le body
onLoad='fenetreCent("cmc_pub.htm","fencent",480,60,"menubar=no,scrollbars=no,statusbar=no")'

*/