var RUTA = '';

function mostrar_mouse(objeto){
	objeto.style.cursor="pointer";
}
function ocultar_mouse(objeto){
	objeto.style.cursor="";
}


function lost_error(xid){
	if (xid.value=="Ingrese su nombre" || xid.value=="Ingrese su apellido" || xid.value=="Ingrese su E-Mail" || xid.value=="Ingrese su teléfono de contacto" ){
	}else{
		xid.style.color='';
	}
}

function alert_me(msg){
	alert(msg);
}

function to_register(){
	if(document.getElementById("nombre").value=="" || document.getElementById("nombre").value=="Ingrese su nombre"){
		document.getElementById("nombre").value="Ingrese su nombre";
		document.getElementById("nombre").focus();
		document.getElementById("nombre").style.color='686651';
	}else if(document.getElementById("apellido").value=="" || document.getElementById("apellido").value=="Ingrese su apellido"){
		document.getElementById("apellido").value="Ingrese su apellido";
		document.getElementById("apellido").focus();
		document.getElementById("apellido").style.color='686651';
	}else if(document.getElementById("email").value=="" || document.getElementById("email").value=="Ingrese su E-Mail"){
		document.getElementById("email").value="Ingrese su E-Mail";
		document.getElementById("email").focus();
		document.getElementById("email").style.color='686651';
	}else if(document.getElementById("telefono").value=="" || document.getElementById("telefono").value=="Ingrese su teléfono de contacto"){
		document.getElementById("telefono").value="Ingrese su teléfono de contacto";
		document.getElementById("telefono").focus();
		document.getElementById("telefono").style.color='686651';
	}else {
		document.getElementById("register").submit();
	}
}
function send_form(){
	if(document.getElementById("contacto_nombre").value=="" || document.getElementById("contacto_nombre").value=="Ingrese su nombre"){
		document.getElementById("contacto_nombre").value="Ingrese su nombre";
		document.getElementById("contacto_nombre").focus();
		document.getElementById("contacto_nombre").style.color='686651';
	}else if(document.getElementById("contacto_email").value=="" || document.getElementById("contacto_email").value=="Ingrese su E-Mail"){
		document.getElementById("contacto_email").value="Ingrese su E-Mail";
		document.getElementById("contacto_email").focus();
		document.getElementById("contacto_email").style.color='686651';
	}else if(document.getElementById("contacto_departamento").value=="" || document.getElementById("contacto_departamento").value=="Ingrese el departamento"){
		document.getElementById("contacto_departamento").value="Ingrese el departamento";
		document.getElementById("contacto_departamento").focus();
		document.getElementById("contacto_departamento").style.color='686651';
	}else if(document.getElementById("contacto_asunto").value=="" || document.getElementById("contacto_asunto").value=="Ingrese el asunto de su mensaje"){
		document.getElementById("contacto_asunto").value="Ingrese el asunto de su mensaje";
		document.getElementById("contacto_asunto").focus();
		document.getElementById("contacto_asunto").style.color='686651';
	}else if(document.getElementById("contacto_mensaje").value=="" || document.getElementById("contacto_mensaje").value=="Ingrese el mensaje"){
		document.getElementById("contacto_mensaje").value="Ingrese el mensaje";
		document.getElementById("contacto_mensaje").focus();
		document.getElementById("contacto_mensaje").style.color='686651';
	}else {
		document.getElementById("contact").submit();
	}
}

function reset_form(){
	document.getElementById("contact").reset();
}

function open_precios(){
	var url = RUTA+'precios';
	winPrecios = window.open(url,"winPrecios",'scrollbars=no,width=650,height=550');
	winPrecios.moveTo(window.screen.availWidth/2-325, window.screen.availHeight/2-275)
}
function open_info_evento(){
	var url = RUTA+'informacion_evento';
	window.open(url,"",'width=800,height=600');
}
