function isset(variable) {
    try {
        if (typeof(eval(variable)) != 'undefined')
			if (eval(variable) != null)
				return true;
     } catch(e) { }
    return false;
}

function imagenOn(imagen,nombre) {
	var imagen_on = "" + nombre + "_on.jpg"
	imagen.src = imagen_on
}

function imagenOff(imagen,nombre) {
	var imagen_off = "" + nombre + "_off.jpg"
	imagen.src = imagen_off
}

function mostrarAcentos(texto) {
	texto = texto.replace(/%C3%A1/gi,"á")
	texto = texto.replace(/%C3%81/gi,"Á")
	texto = texto.replace(/%C3%A9/gi,"é")
	texto = texto.replace(/%C3%89/gi,"É")
	texto = texto.replace(/%C3%AD/gi,"í")
	texto = texto.replace(/%C3%8D/gi,"Í")
	texto = texto.replace(/%C3%B3/gi,"ó")
	texto = texto.replace(/%C3%93/gi,"Ó")
	texto = texto.replace(/%C3%BA/gi,"ú")
	texto = texto.replace(/%C3%9A/gi,"Ú")
	texto = texto.replace(/%C3%BC/gi,"ü")
	texto = texto.replace(/%C3%9C/gi,"Ü")
	texto = texto.replace(/%C3%B1/gi,"ñ")
	texto = texto.replace(/%C3%91/gi,"Ñ")
	texto = texto.replace(/%C2%A1/gi,"¡")
	texto = texto.replace(/%C2%BF/gi,"¿")
	return texto
}

function borrarContactaForm() {
	var destinatario = document.getElementById("destinatario")
	var nombre = document.getElementById("nombre")
	var apellidos = document.getElementById("apellidos")
	var email = document.getElementById("email")
	var mensaje = document.getElementById("mensaje")
	destinatario.selectedIndex = 0
	nombre.value = ""
	apellidos.value = ""
	email.value = ""
	mensaje.value = ""
}

function borrarContactaForm() {
	var nombre = document.getElementById("nombre")
	var apellidos = document.getElementById("apellidos")
	var email = document.getElementById("email")
	var mensaje = document.getElementById("mensaje")
	nombre.value = ""
	apellidos.value = ""
	email.value = ""
	mensaje.value = ""
}

function validarEmail() {
	var email = document.getElementById("email")
	var arroba = email.value.indexOf("@")
	var punto = email.value.lastIndexOf(".")
	var longitud = email.value.length
	if (arroba < 1 || punto == -1) {
		email.style.color = "#cc0000"
		return false
	} else if (punto > arroba && ((punto - arroba) < 2 || (longitud - punto) < 3 || (longitud - punto) > 5)) {
		email.style.color = "#cc0000"
		return false
	} else if (punto < arroba) {
		email.style.color = "#cc0000"
		return false
	} else {
		email.style.color = "#444444"
		return true
	}
}

function desmarcarEmail() {
	var email = document.getElementById("email")
	email.style.color = "#444444"
	//borrarRespuesta() --- volver a poner cuando se defina
}

function validarContactaForm() {
	var n = document.getElementById("nombre")
	var a = document.getElementById("apellidos")
	var e = document.getElementById("email")
	var m = document.getElementById("mensaje")
	var respuesta = document.getElementById("respuesta")
	if (n.value == "" || a.value == "" || e.value == "" || m.value == "") {
		if (e.value != "" && !validarEmail())
			e.value = ""
		if (n.value == "")
			n.focus()
		else if (a.value == "")
			a.focus()
		else if (e.value == "")
			e.focus()
		else if (m.value == "")
			m.focus()
		return false
	} else return true
}

function mostrarRespuestaContacta(texto) {
	var respuesta = document.getElementById("respuesta")
	respuesta.innerHTML = texto
	borrarContactaForm()
}

function borrarRespuesta() {
	var respuesta = document.getElementById("respuesta")
	if (respuesta.innerHTML != "")
		respuesta.innerHTML = ""
}
