
function OpenHelpOn(what, url) {
	Width = 952;
	if(what=='auto') {
		Height = 672;
	} else if(what=='sante') {
		Height = 477;
	} else if(what=='mrh') {
		Height = 664;
	} else if(what=='contact') {
		Width = 653;
		Height = 325;
	} else if(what=='callback') {
		Width = 653;
		Height = 368;
	} else if(what=='info') {
		Width = 426;
		Height = 173;
	} else if(what=='prot') {
		Width = 526;
		Height = 210;
	} else if(what=='dg') {
		Width = 526;
		Height = 201;
	}
	var Parameters="";
	if(navigator.appName=='Netscape') {
		Parameters="menubar=no,resizable=yes,screenX=0,screenY=0";
		Parameters = Parameters+",innerHeight="+Height+",innerWidth="+Width;
	} else {
		Parameters="menubar=no,resizable=yes,left=0,top=0,scrollbars=yes";
		Parameters = Parameters+",height="+Height+",width="+Width;
	}
	var dummy = window.open(url,"",Parameters);
	return;
}

function OpenHelpOff(what, url) {
	Width = 952;
	if(what=='contact') {
		Width = 653;
		Height = 325;
	} else if(what=='callback') {
		Width = 653;
		Height = 368;
	} else if(what=='info') {
		Width = 426;
		Height = 173;
	} else if(what=='prot') {
		Width = 526;
		Height = 210;
	} else if(what=='dg') {
		Width = 526;
		Height = 183;
	}
	var Parameters="";
	if(navigator.appName=='Netscape') {
		Parameters="menubar=no,resizable=yes,screenX=0,screenY=0";
		Parameters = Parameters+",innerHeight="+Height+",innerWidth="+Width;
	} else {
		Parameters="menubar=no,resizable=yes,left=0,top=0";
		Parameters = Parameters+",height="+Height+",width="+Width;
	}
	var dummy = window.open(url,"",Parameters);
	return;
}

// Ouverture d'une popup pour une image, et redimmension automatique de la fenêtre en fonction de la taille de l'image
function afficheMaxi(chemin,titre)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
