// JavaScript Document
var HTTP_WEB_ROOT = "http://www.tienda-disfraces.es/";

function cargando( texto ) {
	var cadena = "<div id=\"carga_index\"><img src=\""+ HTTP_WEB_ROOT +"img/cargando_normal.gif\" /><p>"+texto+"</p></div>";
	return cadena;
}

//Busca disfraces
function busca_disfraces( div ) {
	var idcat_buscador = document.getElementById("idcat_buscador").value;
	var tematica = document.getElementById("tematica").value;

	document.getElementById(div).innerHTML = cargando("Buscando artículos...");
	window.location.href = "listado_miniaturas.php?idcat_buscador="+ idcat_buscador + "&tematica=" + tematica;
}

function muestra_imagen( imagen ) {
	document.getElementById("imagen").src = "dinamic/marca_de_agua.php?src=../img_bd/" + imagen;
}

var con_envia_form = new XHConn();
var fin_envia_form = function (oXML) { document.getElementById('contacto_ficha').innerHTML = oXML.responseText; };
function envia_form( ) {
	var texto_error = "";
	
	texto_error += document.getElementById("nombre").value == "" ? "\n- Nombre" : "";
	texto_error += document.getElementById("email").value == "" && document.getElementById("telefono").value == "" ? "\n- E-mail o Teléfono" : "";
	texto_error += document.getElementById("consulta").value == "" ? "\n- Consulta a realizar" : "";
	texto_error += document.getElementById("confirma").checked == false ? "\n- Aceptar que nuestros comerciales se pongan en contacto con usted" : "";
	
	if( texto_error == "" ) {
		var cadena = prepara_envio('contacto_ficha');
		document.getElementById('contacto_ficha').innerHTML = "<div id=\"cargando_form\"><img src=\""+ HTTP_WEB_ROOT +"img/cargando_normal.gif\" /><p>Enviando formulario</p></div>";
		
		
		con_envia_form.connect("dinamic/mail_contacto.php", "POST", cadena, fin_envia_form);
	}
	else {
		alert( "Los siguientes campos son obligatorios: \n" + texto_error );
	}
}