// JavaScript Document

function comprueba_contrato(){
	var empresa = document.getElementById('empresa').value;
	var nif = document.getElementById('nif').value;
	var direccion = document.getElementById('direccion').value;
	var localidad = document.getElementById('localidad').value;
	var cp = document.getElementById('cp').value;
	var provincia = document.getElementById('provincia').value;
	var email = document.getElementById('email').value;
	var telefono = document.getElementById('telefono').value;
	var dominio = document.getElementById('dominio').value;
	document.getElementById('empresa').style.backgroundColor = "#FFFFFF";
	document.getElementById('nif').style.backgroundColor = "#FFFFFF";
	document.getElementById('direccion').style.backgroundColor = "#FFFFFF";
	document.getElementById('localidad').style.backgroundColor = "#FFFFFF";
	document.getElementById('cp').style.backgroundColor = "#FFFFFF";
	document.getElementById('provincia').style.backgroundColor = "#FFFFFF";
	document.getElementById('email').style.backgroundColor = "#FFFFFF";
	document.getElementById('telefono').style.backgroundColor = "#FFFFFF";
	document.getElementById('dominio').style.backgroundColor = "#FFFFFF";

	if (!empresa){
		alert ("Por favor, escriba su empresa");
		document.getElementById('empresa').style.backgroundColor = "#FFCACA";
	} else {
		if (!nif){
			alert ("Por favor, escriba su nif");
			document.getElementById('nif').style.backgroundColor = "#FFCACA";
		} else {
			if (!direccion || !localidad || !cp || !provincia) {
				alert ("Por favor, introduzca los datos para el envio de la factura");
				if (!direccion) document.getElementById('direccion').style.backgroundColor = "#FFCACA";
				if (!localidad) document.getElementById('localidad').style.backgroundColor = "#FFCACA";
				if (!cp) document.getElementById('cp').style.backgroundColor = "#FFCACA";
				if (!provincia) document.getElementById('provincia').style.backgroundColor = "#FFCACA";
			}
			else {					
				if (!telefono || !email) {
					alert ("Por favor, escriba un telefono de contacto y el e-mail");
					if (!telefono) document.getElementById('telefono').style.backgroundColor = "#FFCACA";
					if (!email) document.getElementById('email').style.backgroundColor = "#FFCACA";
				}
				else {
					if (!dominio){
						alert ("Por favor, escriba el dominio con el que quiere hacer los anuncios");
						document.getElementById('dominio').style.backgroundColor = "#FFCACA";
					} else {
						enviar_contrato();
					}
				}
			}
		}
	}	
}

function enviar_contrato(){
	document.getElementById('formulario').method = "post";
	document.getElementById('formulario').action = "proceso_contrato/pagar.php";
	document.getElementById('formulario').submit();
}

function valida_contacto(origen){
	var error = 0;
	if (document.getElementById('nombre').value == "") {	
		document.getElementById('nombre').style.backgroundColor = "#CBDAE4";	
		error = 1;		
	} else {
		document.getElementById('nombre').style.backgroundColor = "#FFFFFF";			
	}
	if (document.getElementById('mail').value == "" && document.getElementById('telefono').value == "") {	
		alert ("Introduzca el e-mail o teléfono para ponernos en contacto con usted");
		document.getElementById('mail').style.backgroundColor = "#CBDAE4";	
		document.getElementById('telefono').style.backgroundColor = "#CBDAE4";	
		error = 1;		
	} else {
		document.getElementById('mail').style.backgroundColor = "#FFFFFF";	
		document.getElementById('telefono').style.backgroundColor = "#FFFFFF";	
	}	
	if (document.getElementById('web').value == "http://" || document.getElementById('web').value == "" ) {
		document.getElementById('web').style.backgroundColor = "#CBDAE4";	
		error = 1;
	}
	else {
		if (document.getElementById('web').value.search("http://")>=0) {
			document.getElementById('web').style.backgroundColor = "#FFFFFF";
		}
		else {
			document.getElementById('web').style.backgroundColor = "#CBDAE4";
			alert ("Revise la URL, debe contener http:// + URL");
			error = 1;
		}
	}
	//si no ha producido error enviamos los datos
	if(error == 0){
		enviar_contacto(origen);
	} else {
		alert("Debe rellenar los campos obligatorios marcados con color de fondo");	
	}
}

var myConn_enviar = new XHConn();	
var fin_enviar = function (oXML) { document.getElementById('formulario_contacto').innerHTML = oXML.responseText; pageTracker._trackPageview('/mailforms/contacto.php'); };
function enviar_contacto(origen){	
	var nombre = document.getElementById('nombre').value;
	var web = document.getElementById('web').value;
	var mail = document.getElementById('mail').value;
	var telefono = document.getElementById('telefono').value;
	var comentarios = document.getElementById('comentarios').value;
	
	document.getElementById('formulario_contacto').innerHTML = '<div style="display:block;float:left;width:648px;height:326px;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:14px;text-align:center;">Enviando la petici&oacute;n...</div>';
	myConn_enviar.connect("mailforms/contacto.php", "POST","nombre="+nombre+"&web="+web+"&mail="+mail+"&telefono="+telefono+"&comentarios="+comentarios+"&origen="+origen, fin_enviar);			
}