// JavaScript Document
function popup(file,w,h) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	var fact,n_w,n_h;
	if(w>640)
	{
		n_w=640;
		fact=w/640;
		n_h=h/fact;
		f=open("",'popup','width='+n_w+',height='+n_h+',toolbar=no,scrollbars=0,resizable=0,directories=0,');
		f.document.write("<TITLE>"+file+"</TITLE>");
		f.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onclick='window.close()' onblur='window.close()' onload='window.moveTo(200,100)'>");
		f.document.write("<img src='"+file+"' width='"+n_w+"' height='"+n_h+"'>");
		f.document.write("</BODY>");
		f.document.close();
	}
	else
	{
		if(h>500)
		{
			n_h=500;
			fact=h/500;
			n_w=w/fact;
			f=open("",'popup','width='+n_w+',height='+n_h+',toolbar=no,scrollbars=0,resizable=0,directories=0,');
			f.document.write("<TITLE>"+file+"</TITLE>");
			f.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onblur='window.close()' onload='window.moveTo(200,100)'>");
			f.document.write("<img src="+file+" width='"+n_w+"' height='"+n_h+"'>");
			f.document.write("</BODY>");
			f.document.close();
		}
		else
		{	
			f=open("",'popup','width='+w+',height='+h+',toolbar=no,scrollbars=0,resizable=0');
			f.document.write("<TITLE>"+file+"</TITLE>");
			f.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onblur='window.close()' onload='window.moveTo(200,100)'>");
			f.document.write("<img src="+file+">");
			f.document.write("</BODY>");
			f.document.close();
		}
	}
}

