function scorecard(){
	openWindow("grille.php",320,580,"scorecard")
}

function dispos(id,lang){
	openWindow("dispos.php?lang="+lang+"&id="+id,950,590,"dispos")
}

function printGood(id,lang){
	openWindow("print.php?lang="+lang+"&id="+id,600,540,"printGood")
}

function printGolf(id,lang){
	openWindow("printGolf.php?lang="+lang+"&id="+id,600,540,"printGolf")
}

function cglGood(type,lang){
	var id = (type=='villa')? 18 : 19;
	openWindow("cgv.php?lg="+lang+"&id="+id,600,540,"cglGood")
}

function openWindow(pTarget,pWidth,pHeight,pName){
	var browser=navigator.appName;
	var OS=navigator.platform;
	var version = parseFloat(navigator.appVersion);
	if (browser.indexOf("Netscape")!=-1 && version>=4.0 && OS.indexOf("Mac")!=-1){// Netscape 4+ Windows
		window.open(pTarget,pName,'titlebar=no,top=0,left=0,width=' + pWidth+',height='+pHeight+',screenX=0,screenY=0,top=0,left=0,scrollbars=1')
	}else if (browser.indexOf("Microsoft Internet Explorer")!=-1 && OS.indexOf("Mac")!=-1){// IE Mac
		window.open(pTarget,pName,'resizable=1,top=0,left=0,width=' +pWidth+',height='+pHeight+',screenX=0,screenY=0,top=0,left=0,scrollbars=1')
	}else if (browser.indexOf("Netscape")!=-1 && OS.indexOf("Mac")!=-1){// Netscape Mac
		window.open(pTarget,pName,'width='+pWidth+',height='+pHeight+',top=0,left=0,resizable=1,scrollbars=1');
	}else if (browser.indexOf("Microsoft Internet Explorer")!=-1 && OS.indexOf("Win")!=-1){// IE Windows
		var win = window.open(pTarget,pName,'titlebar=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availHeight+',screenX=0,screenY=0,top=0,left=0')
		win.resizeTo(pWidth, pHeight);
	}else if (browser.indexOf("Netscape")!=-1 && OS.indexOf("Win")!=-1){// Netscape Windows
		window.open(pTarget,pName,'width='+pWidth+',height='+pHeight+',top=0,left=0,scrollbars=1');
	}else{
		window.open(pTarget,pName);
	}
}