/*
	2006 - (c) Intercambios Internacionales por Internet. Todos los derechos reservados
	13-12-06
*/
function clickMail() {
	if ((document.formulario.email.value=="(Introduzca su correo)") ||
	(document.formulario.email.value=="")) {
		document.formulario.email.value='';
	}
	document.getElementById("mail").style.color="black";
}

function clickTema() {
		document.getElementById("temaseleccion").style.color="black";
}

function clickMensaje() {
	if (document.formulario.mensaje.value=="(Introduzca su mensaje; le enviaremos copia a su correo)")  
	{
		document.formulario.mensaje.value='';
	}
	document.getElementById("mensaje").style.color="black";
}

function validarEnvio() {
	var bandera;
	bandera = true;
	if ((document.formulario.mensaje.value=="") || 
		(document.formulario.mensaje.value=="(Introduzca su mensaje; le enviaremos copia a su correo)"))  {
			document.getElementById("error1").style.display="block";
			document.getElementById("mensaje").style.color="red";
			bandera=false;
	}
	if ((document.formulario.email.value=="(Introduzca su correo)") ||
		(document.formulario.email.value=='') || 
		!(validarEmail(document.formulario.email.value))) {
			bandera=false;
			document.getElementById("mail").style.color="red";
			document.getElementById("error1").style.display="block";
	}
	if (document.formulario.tema.value=="nulo") {
			bandera=false;
			document.getElementById("error1").style.display="block";
			document.getElementById("temaseleccion").style.color="red";
	}
	return bandera;
}
/* Validaci?n de mensaje */
function validarEmail(valor) {
  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
   		return (true);
  	} else {
   		return (false);
	}
}


/************************************************************************************************/
/*Funciones para ocultar el emilio*/
function dame_correo(usuario,dominio,conector){
	return usuario + conector + dominio;
}
function escribe_enlace_correo(usuario,dominio,conector){
	texto =	("<a href='mailto:" + dame_correo(usuario,dominio,conector) + "' class='email' style='vertical-align: middle;border:thin solid;background-color:#e4e4e4;font-weight:bold;'>" + "&nbsp;" + usuario + conector + dominio + "&nbsp;</a>");
	document.write(texto);
}
/************************************************************************************************/


function muestraInicio() {
  var elemento1;
  var elemento2;
  elemento1 = document.getElementById("texto_inicial2").style;
  
  if (document.getElementById("columna_central_bienvenida").style.visibility == "visible") {
    document.getElementById("columna_central_bienvenida").style.visibility = "hidden"; 
    document.getElementById("columna_central_bienvenida2").style.visibility = "visible";
  } else {
    document.getElementById("columna_central_bienvenida").style.visibility = "visible";
    document.getElementById("columna_central_bienvenida2").style.visibility = "hidden";
  }
}
