/* AUTEUR: CONTROLE HYBRIDE LR */
/* DATE DE CREATION: 2004-01-13 */

function imgview(imgpath,ww,hh,lf,tp) {
	if(ww==""){ww=500}
	if(hh==""){hh=450}
	if(lf==""){lf=2}
	if(tp==""){tp=2}
	var hst = document.location.host
	imgopen=open("","imgviewer","scrollbars=yes,resizable=yes,width="+ww+",height="+hh+",left="+lf+",top="+tp);
	imgopen.document.open();
	imgopen.document.write('<html><head><title>Album photo</title><style>a, a:active, a:visited {color:#660033; text-decoration:none} a:hover {color:#000000; text-decoration:underline} </style></head><body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0" onload="this.focus();">');
	imgopen.document.write('<center><a href="javascript:window.close()"><img src="'+imgpath+'" border="0"><br/>Fermer</a>');
	imgopen.document.write("</center></body></html>");
	imgopen.document.close();
}