msiemacsize = 0;
function isaMac() {
	if (navigator.appVersion.indexOf("PPC") != -1 || navigator.appVersion.indexOf("68K") != -1) return true;
	else return false;
}
if (navigator.appName == "Microsoft Internet Explorer" && isaMac() && parseInt(navigator.appVersion) <= 4 && navigator.appVersion.indexOf('MSIE 5') == -1)  msiemacsize = 14;

var popped;
var poppedInfo = null;
function pop(goPage,nom,windowWidth,windowHeight,scrollBars,toolbar){
	if (scrollBars == null || (scrollBars != "no" && scrollBars != "yes")) { scrollBars = "yes" };
	if (toolbar == null || (toolbar != "no" && toolbar != "yes")) { toolbar = "yes" };
	if (parseInt(navigator.appVersion) >= 4) { wX = (screen.width/2)-(windowWidth/2+10); wY = (screen.height/2)-(windowHeight/2+20); }
	else { wX = 0; wY = 0; }
	if(arguments.length == 5) poppedInfo = arguments[4];
	popped = window.open(goPage,nom,'width='+windowWidth+',height='+(windowHeight+msiemacsize)+',status=no,menubar=no,scrollbars='+scrollBars+',resizable=yes,toolbar='+toolbar+',screenX='+wX+',screenY='+wY+',left='+wX+',top='+wY);
	if (navigator.appName=="Netscape" || document.all) popped.focus();
}
