// JavaScript Document
function Resaltar(Elemento)
{
	Elemento.style.backgroundColor='#333';
	Elemento.style.color='#ccc';
//	Elemento.style.fontWeight='Bold';
}
function Normalizar(Elemento)
{
	Elemento.style.backgroundColor='#222';
	Elemento.style.color='#999';
//	Elemento.style.fontWeight='';
}

function Plegar(Elemento)
{
	if (Elemento.style.display=='none')
		Elemento.style.display=''
	else
		Elemento.style.display='none';
}

function EscribirFecha(Mensaje,TextoFecha,ColorFecha)
{
var LaFecha=new Date();
var Mes=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
var FechaCompleta="";
var NumeroDeMes="";
var Agno="";

if (TextoFecha=="")
{
	NumeroDeMes=LaFecha.getMonth();
}
else
{
	NumeroDeMes=parseInt(TextoFecha.substring(0,2))-1;
}
FechaCompleta=LaFecha.getDate()+" de "+Mes[NumeroDeMes]+" de "+LaFecha.getFullYear();
document.write (Mensaje.bold()+FechaCompleta.bold());
}

//Para el correo

function ComprobarYEnviar()
{
	if (Formulario.Nombre.value=="" || Formulario.Direccion.value=="" || Formulario.Mensaje.value=="")
	{
		alert ("Los datos Nombre, Dirección y Mensaje no pueden quedar vacíos")
	}
	else
	{
		Formulario.submit();
	}
}
