
	<!-- Begin resolutie cookie
	var xy = navigator.appVersion;
	xz = xy.substring(0,4);
	document.cookie = "ScreenWidth=" + screen.width
	document.cookie = "ScreenHeight=" + screen.height
	// End -->
	
	
	function open_window(votre_page)
{
	var hauteur_popup=570;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=690;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"Popup","status=no,scrollbars=yes,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}
function open_window2(votre_page)
{
	var hauteur_popup=570;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=900;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"Popup","status=no,scrollbars=yes,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}

function open_window3(votre_page)
{
	var hauteur_popup=800;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=900;
	var L = (screen.width - largeur_popup) / 2;
	pop_up = window.open(votre_page,"Popup","status=no,scrollbars=yes,resizable=no,height="+hauteur_popup+",width="+largeur_popup+",top="+H+",left="+L);
}

function expand(thistag) {
   styleObj=document.getElementById(thistag).style;
   if (styleObj.display=='none') {styleObj.display='';}
   else {styleObj.display='none';}
}
