function Img_Show(fil)
{
	document.open(); 
//	document.write('<DIV id=pho style="visibility:visible;position:absolute;top:0;left:0;width:500;height:500;>');
	document.write("<table width=100% height=100% border=0 cellpadding=0 cellspacing=0 BGCOLOR=F9FFF9>");
	document.write("<TR><TD ALIGN=CENTER VALIGN=CENTER>");
	document.write('<TABLE WIDTH=100% HEIGHT=100% BGCOLOR=#F9FFF9><TR><TD HEIGHT=480 VALIGN=CENTER ALIGN=CENTER>');
	document.write('<IMG SRC=/img/'+fil+'.jpg>');
	document.write('</TD></TR><TR><TD HEIGHT=20 ALIGN=RIGHT><INPUT TYPE=BUTTON VALUE="Retour" onClick="history.go(-1)"></TD></TR></TABLE>');
	document.write('</TD></TR></TABLE>');
//	document.write('</DIV>');
	document.close();
}
function Img_Shw()
{
	Pho_Shw('pho');
	Div_Hid('but1');
	Div_Hid('but2');
	Div_Hid('but3');
}
function Pho_Shw(id)
{
	if (document.layers) 
	{
		doc=document.layers[''+id+''];
		doc.visibility = "show";
	}
	else if (document.all) 
	{
		doc=document.all[''+id+''];
		doc.style.visibility = "visible";
	}
	else if (document.getElementById) 
	{
		doc=document.getElementById(''+id+'');
		doc.style.visibility = "visible";
	}
	tbl='<TABLE WIDTH=100% HEIGHT=100% bgcolor=#F0F0F0><TR><TD HEIGHT=480 VALIGN=CENTER ALIGN=CENTER>';
	tbl=tbl+'<IMG SRC=/img/pro_mup_f.jpg>';
	tbl=tbl+'</TD></TR><TR><TD HEIGHT=20 ALIGN=RIGHT><INPUT TYPE=BUTTON VALUE="Fermer" onClick="Img_Hid()"></TD></TR></TABLE>';
	doc.innerHTML=tbl;
}
function Div_Shw(id)
{
	if (document.layers) 
	{
		doc=document.layers[''+id+''];
		doc.visibility = "show";
	}
	else if (document.all) 
	{
		doc=document.all[''+id+''];
		doc.style.visibility = "visible";
	}
	else if (document.getElementById) 
	{
		doc=document.getElementById(''+id+'');
		doc.style.visibility = "visible";
	}
}
function Img_Hid()
{
	Div_Hid('pho');
	Div_Shw('but1');
	Div_Shw('but2');
	Div_Shw('but3');
}
function Div_Hid(id)
{
	if (document.layers) document.layers[''+id+''].visibility = "hide";
	else if (document.all) document.all[''+id+''].style.visibility = "hidden";
	else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden";
}
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);