function popImage(URL,WIDTH,HEIGHT,WNAME){windowprops="width="+(WIDTH+20)+",height="+(HEIGHT+30);text="<html><head><title>Click on X to close this window before viewing next</title></head><body bgcolor='white'><div align=center><img src='"+URL+"'></div></body></html>";preview=window.open("",WNAME,windowprops);preview.document.open();preview.document.write(text);preview.document.close();}
