/***********************************************
* funcions per obrir una finestra centrada i a la mida de la foto que obrim
***********************************************/

var ventana 
var cont=0 
var titulopordefecto = "Cuina Volcŕnica" //texto por defecto a mostrar en la barra de título en caso de omitir el argumento titulo 

/*Foto gran amb resize*/
function afoto(cual,titulo){
	if(cont==1){ventana.close();ventana=null} 
	if(titulo==null){titulo=titulopordefecto} 
	ventana=window.open('','ventana','resizable=no,scrollbars=no, width=100, height=100') 
	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" bgcolor="#CCCCCC" onUnload="opener.cont=0"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td><div align="center"><img src="../includes/cuinavolcanica.asp?path=' + cual + '&costat_gran=600&format=fixe" onLoad="opener.redimensionar(this.width, this.height)"></div></td></tr></table>') 
	ventana.document.close() 
	cont++ 
}

	function redimensionar(ancho,alto){ 
	ventana.resizeTo(ancho+27,alto+66) 
	ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup 
}

