function openNewWindow(iName){
newWindow=window.open ("","","")
var ii
ii="<html><head><title>Products Enlarge View</title></head><body><center>"
ii+="<p><img src=../pic1/"
ii+=iName
ii+=".gif></img>"
ii+="<br><a href='javascript:self.close()'>Close</a></center></body></html>"
newWindow.document.write(ii)
}