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