function imgPop(szTitle,szImage,szAlt){ 
bName=navigator.appName;
bVer=parseInt(navigator.appVersion);
 if(screen.width<800)popup=window.open('','lwaPopWin','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=620,height=350,top=60,left=10');
 else{
  popup=window.open('','lwaPopWin','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=760,height=580,top=30,left=20');
 }

popup.focus();
 with(popup.document){
 open();
 write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>");
 write("<META HTTP-EQUIV='imagetoolbar' content='no'>");
 write("<link rel='stylesheet' href='css/pop.css' type='text/css'>");
 write("<title>Leicestershire Wildfowlers' Association :: "+szTitle+"</title></head><body background='images/popback.jpg'>");
 write("<p><span class='lwaTitle'>"+szTitle+"</span><hr></p>");
  if(screen.width<800)write("<p align=center><img src='images/full_"+szImage+".jpg' width='75%' height='75%' alt='"+szAlt+"'></p>");
  else write("<p align=center><img src='images/full_"+szImage+".jpg' alt='"+szAlt+"'></p>");
 write("<p align=right><span class='lwaFootnote'><a href='JavaScript:self.close();'>Click here</a> to close this window.</span></p>");
 write("</body></html>");
 close();
 }
}
