var ventana 
var cont=0 
var titulopordefecto = "Tu Casa" //texto por defecto a mostrar en la barra de título en caso de omitir el argumento titulo 

function verfoto(cual,titulo) 
{ 
if(cont==1)
	{
		ventana.close();
		ventana = null
	} 
if(titulo == null)
	{
		titulo = titulopordefecto;
	} 
ventana = window.open ('','ventana', 'height=200 width=200 resizable=yes,scrollbars=no') 
ventana.document.write('<html><head><title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><a href="#" onClick="javascript:window.close();" title="pinche para cerrar ventana" ><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)" border="0"></a> ') 
ventana.document.close() 
cont++
return false
} 
function redimensionar(ancho,alto) 
{ 
	ventana.resizeTo(ancho+12,alto+38) 
	ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup 
} 
function abreventana(ruta,nombre,propiedades){
  window.open(ruta,nombre,propiedades);
  return false;
}
