/*
Pop up image viewer script II
By Website Abstraction (http://wsabstract.com)
Over 400+ free scripts here!
*/

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