function InitMenus ()
{
	Clase ('idMenu-' + Opc1, 'Seleccionado');
}


function EnviarFormContacto (Formulario)
{
	var Ajax = new TAjax ();

	if (ValidarFormulario (Formulario))
	{	if (! Formulario.Lopd.checked) alert ('Tiene que aceptar la Ley de Protección de Datos');
		else
		{	Ajax.onCargar = onEnviar;
			Ajax.Formulario (Formulario);
			Ajax.Cargar ('/fuentes/enviarcontacto.php');
		}
	}
}


function onEnviar (Peticion)
{
	Display ('idFormulario', 'none');
	Display ('idEnvioOK', 'block');
}

function AvisoLegal ()
{
	var Ventana = new TWindow ()
	
	Ventana.Titulo      = 'Aviso Legal';
	Ventana.Cargar ('/fuentes/avisolegal.php');

}


function Lopd ()
{
	var Ventana = new TWindow ()

	Ventana.Titulo      = 'Ley de Protección de Datos';
	Ventana.Vars ('Lopd', 1);
	Ventana.Cargar ('/fuentes/avisolegal.php');

}

function FlashHome ()
{ 
	document.write ('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write ('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"');
	document.write ('width="900" height="200" id="home" align="middle">');
	document.write ('<param name="allowScriptAccess" value="sameDomain" />');
	document.write ('<param name="movie" value="/swf/home.swf" /><param name="quality" value="high" />');
	document.write ('<param name="bgcolor" value="#339900" />');
	document.write ('<embed src="/swf/home.swf" quality="high" bgcolor="#339900" width="900" height="200"');
	document.write ('name="home" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"');
	document.write ('pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write ('</object>');
}



function VerPlano (Id)
{
	var Ventana = new TVentana ();

	Ventana.Ancho       = 800;
	Ventana.Alto        = 600;
	Ventana.Nombre      = 'PlanoGoogle';
	Ventana.URL         = '/planos/plano'+ Id +'.html';
	Ventana.Open (true);
}  

  
