// JavaScript Document
function abrirInfo(URL) {
	window.open(URL,"Notal","width=500,height=150,scrollbars=auto,resizable=no, menubar=no,status=no,location=0");
}

titulopordefecto=":.: GPL GABINETE DE PSICOLOGÍA :.: ";
var ventana;
var cont=0;
function abrirPopup(cual,titulo){
	if(cont==1){ventana.close();ventana=null}
	if(titulo==null){titulo=titulopordefecto}
	ventana=window.open('','ventana','resizable=no,scrollbars=no')
	ventana.document.write('<html><head><title>' + titulo + '</title><script language="javascript" type="text/javascript" src="../acciones.js"></script></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" resizable="false" onUnload="opener.cont=0"><table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)"></td></tr></table></body></html>');
	ventana.document.close();
	cont++;
}

function redimensionar(ancho, alto){
	ventana.resizeTo(ancho+12,alto+28);
	ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2);
}


function abrirMapa(URL) {
	window.open(URL,"Mapa","width=650,height=543,scrollbars=auto,resizable=no, menubar=no,status=no,location=0");
}


