/* AUTEUR: JF BAZIN */
/* DATE DE CREATION: 26/09/01 */
/*--------les popup show---------------------*/
var testw;
testw=0;

function clot() {
    if (testw==1)
		{Window3.close();
		testw=0;
		}
}

function popupshow(ref) 

{	clot();	

	Window3=open("",'w'+ref,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=no,width=350,height=270,screenX=10,screenY=10,top=10,left=10');

	Window3.document.write("<HEAD><TITLE>HorseGuard Item : Ref. "+ref+"</TITLE></HEAD>")	;	

	Window3.document.write("<BODY onClick='javascript:window.close();'><CENTER><img width=320 height=240 id='limage' src='http://www.horseguardfence.com/img_std/"+ref+".jpg'>");	

	Window3.document.write("</CENTER></BODY>");				

	testw=1;

} 
