function abrirImagen(imagen,w,h) {
 ventanaImagen=window.open('','imagenAbierta',
   'width=80,height=50'
   +',screenY=50'
   +',top=50'
   +',menubar=0'
   +',toolbar=0'
   +',status=0'
   +',scrollbars=0'
   +',resizable=1')
 ventanaImagen.document.close()
 ventanaImagen.document.writeln(
  '<html><head><title>::: Visual EffeX :::</title></head>'
   +'<body bgcolor=black topmargin="0" leftmargin="0" onLoad="self.focus()">'
   +'<div align="center"><center>'
   +'<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">'
   +'<tr>'
   +'<td width="100%" valign="middle" align="center">'
   +'<img src='
   + imagen
   + ' border="0">' 
   +'</td>'
   +'</tr>'
   +'</table>'
   +'</center></div>'
   +'</body></html>'
 )
 w1 = w+80;
 h1 = h+80;
 ventanaImagen.resizeTo(w1,h1)
 ventanaImagen.focus()
}

function tmp()
{
 ventanaImagen.document.close();
 if (h1 < 600) { ventanaImagen.resizeTo(w1,h1) }
	else { ventanaImagen.resizeTo(w1,550)}
}
