// CURRENT PAGE
var currPage = ""+document.location;

// GESTIONNAIRE POPUP
// Mode d'utilisation (changez url, width, et height pour les vraies valeurs) :
// popUp(url,width,height,1) ====>  avec bande de défilement
// popUp(url,width,height,0) ====>  sans bande de défilement

function popUp(url,vwidth,vheight,scroll) {	
	
var w = vwidth;
var h = vheight;
var x = (screen.width - w)/2;
var y = (screen.height - h)/2;			
var s = scroll;

if ((s == 0) || (s == "") || (s == null)) {
	s = "no"
}
else {
	s = "yes"
}
		
popupWin = window.open(url, 'popup', 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars='+s+',resizable=yes,width='+w+',height='+h+',left='+x+',top='+y+'')
}
