//script por Tunait 
var ventana 
var cont = 0 
var titulo = "..:: Cortijo Rueda ::.."

function autoPopUp(cual){ 
	if(cont==1){
		ventana.close();
		ventana = null
	} 
	ventana = window.open('','ventana','resizable=0,scrollbars=no') 
	ventana.document.write('<html><head><title>' + titulo + '</title></head><body bgcolor="#CCCCCC" style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><table width="100%" height="100%" align="center" border="0"><tr><td align="center" valign="middle"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)"></td></tr></table>') 
	ventana.document.close() 
	cont++ 
} 
function redimensionar(ancho,alto){ 
	ventana.resizeTo(ancho + 30, alto + 48) 
	ventana.moveTo((screen.width - ancho) / 2,(screen.height - alto) / 2)
}

