<!-- Funciones javascript -->

function pag_inicial() {
	var ruta = "/";

	return ruta;
}

function openwin(theURL) {
	var ancho = 1024;
	var alto = 768;

	var popX = (screen.width-ancho)/2;
	var popY = (screen.height-alto)/2;
	
	var opciones_pop = "toolbar=no,location=no,status=no,scrollbars=no,resizable=no,directories=no,personalbar=no,menubar=no,width="+ancho+",height="+alto+",left="+popX+",top="+popY+"'";
	if ((self.aNoteWin) && (!self.aNoteWin.closed)) self.aNoteWin.close();
 	var popupwin=window.open(theURL,"popupwin",opciones_pop);
	self.aNoteWin = popupwin;
	popupwin.moveTo(popX,popY);
	popupwin.resizeTo(ancho,alto);
	popupwin.focus();

	return;
}

function asignafoto(id,ruta) {
	self.document.getElementById(id).src=ruta;
}

function capa(id,accion) {
	self.document.getElementById(id).style.visibility=accion;
}

function centraCapa(id) {
	var ancho = 1024;
	var alto = 768;

	var topX = (self.document.body.clientWidth-ancho)/2;
	var topY = (self.document.body.clientHeight-alto)/2;
	
	self.document.getElementById(id).style.left = String(topX);
	self.document.getElementById(id).style.top = String(topY);
}

function ampliar(imagen,titulo,ancho,alto){

	var html;
	html="<HTML><HEAD><title>"+titulo+"</title><script language='JavaScript'>window.defaultStatus=' ';</script></HEAD>";
	html+="<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>";
	html+="<div id='CapaImagen' style='position:absolute; left:0px; top:0px; width:"+ancho+"px; height:"+alto+"px; z-index:1'>";
	html+="<a href='javascript:self.close();' onMouseOver='window.status=\" \";return true;' onMouseOut='window.status=\" \";return true;'><img src='"+imagen+"' border='0' alt=' clic para cerrar esta ventana '></a>";
	html+="</div></body></HTML>";


	var nuevo_ancho = ancho+4*2;
	var nuevo_alto = alto+24*2;

	var popX = (screen.width-nuevo_ancho)/2;
	var popY = (screen.height-nuevo_alto)/2;

	var opciones_pop = "toolbar=no,location=no,status=no,scrollbars=no,resizable=no,directories=no,personalbar=no,menubar=no,width="+nuevo_ancho+",height="+nuevo_alto+",left="+popX+",top="+popY+"'";
	if ((self.aNoteWin) && (!self.aNoteWin.closed)) self.aNoteWin.close();
	var popup=window.open("","popup",opciones_pop);
	popup.document.write(html);
	popup.moveTo(popX,popY);
	popup.resizeTo(nuevo_ancho,nuevo_alto);
	self.aNoteWin = popup;
	popup.focus();

	return;

}

function dibuja_flash(swf,width,height) {
	self.document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='" + width + "' height='" + height + "'><param name='wmode' value='transparent'><param name='movie' value='" + swf + "'/><param name='quality' value='high'/><embed src='" + swf + "' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "' wmode='transparent'></embed></object>");
}
