<!--
/*
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</title><body topmargin="0" leftmargin="0"><img src="'+imagesrc+'"></body>')
popwin.document.close()
}

function popimagetwo(winwidth,winheight){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Image</title><body topmargin="0" leftmargin="0"><img src="images/brooma.jpg"><img src="images/broomb.jpg"><br><img src="images/broomc.jpg"><img src="images/broomd.jpg"></body>')
popwin.document.close()
}
-->