/*
Pop up image viewer script II
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/

function popinfo(imgdescr,winwidth,winheight){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<body vlink="blue"><title>Info</title><body bgcolor="#FFFFFF" topmargin="10" leftmargin="10" marginwidth="10" marginheight="10"><br><table align="center" cellpadding="5" cellspacing="0" width="90%" bgcolor="#FFF3BD"><tr><td width="90%"><br><font size="2" face="Arial" color="#000000"><span style="font-size:10pt;">'+imgdescr+'<br><br><p align="right"><a href="javascript:self.close()">ventana cerrada</a></p></td></tr></table></body>')
popinfo.document.close()
}