function popimage(imagesrc,winwidth,winheight){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Window</title><body><img src="'+imagesrc+'"></body>')
popwin.document.close()
}
