/*
Pop up image viewer script II
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/

function popimage(imagesrc,imgdescr,winwidth,winheight){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<body vlink="black"><title>Map</title><body bgcolor="#FFFFFF" topmargin="10" leftmargin="10" marginwidth="10" marginheight="10"><center><a href="javascript:window.close()" onFocus="this.blur()"><img src="'+imagesrc+'" border="1"></a><br></center><table style="line-height:100%; margin-top:0; margin-bottom:0;" cellpadding="0" cellspacing="0" width="100%" height="20"><tr><td><center><font face="Arial" color="#000000"><span style="font-size:10pt;">'+imgdescr+'</span></font></center></td></tr></table></body>')
popwin.document.close()
}