
function popUp(URL) {
var view_width = 525
var view_height = 400
var look='toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+view_width+',height='+view_height+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Close Up</title><head>')
popwin.document.write('<body bgcolor="#FFFFFF">')
popwin.document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%" height="100%" ><tr><td align="center">')
popwin.document.write('<center><br>')
popwin.document.write('<TABLE cellpadding=0 cellspacing=0 border=1 bordercolor="0000FF"><tr><td>')
popwin.document.write('</td></tr></table>')
popwin.document.write('</td></tr><tr><td valign="bottom" align="center">')
popwin.document.write('<a href="#" onClick=\'self.close()\'><img src="/images/win-close.gif" width="13" height="30" border="0"></a><br><br>')
popwin.document.write('<img src="'+URL+'">')
popwin.document.write('</center>')
popwin.document.write('</td></tr></table>')
popwin.document.write('</body>')
popwin.document.close()
}
