$(document).ready(function(){
	$(".numeric").numeric();
	$(".numeric").attr("maxlength", 11);
	$(".decimal").numeric(".");
	$(".decimal").attr("maxlength", 11);
	
	$("#reloadCaptcha").click(function(){
		var url	= "class/captcha/securimage_show.php?&wImg=205&code=6&sid=" + Math.random();
		$("#imgCaptcha").attr("src", url);
	});
	
	$("#send-request").click(function(){
		//$(this).attr("disabled", true);
	});
	
});



function sendRequest(action){
	var url	= (action == "send") ? "request-quote.php" : "ajax/preview-request.php";
	
	$('#form-request').ajaxSubmit({
		url			: url,
		beforeSubmit: function(){
			$("#preview-request, #send-request").css("display", "none");
		},		
        success		: function(data){
			if(action == "send"){
				if($.trim(data) != ""){
					$(".mensajeErrFormulario").html(data);
					$(".mensajeErrFormulario").css("display", "block");
					$("#reloadCaptcha").trigger("click");
					$("#preview-request, #send-request").css("display", "");
				}else{
					location.href = "request-quote.php?pg=19";
				}
			}else{
				//window.open("ajax/preview-request.php?ajax=true");
				$.prettyPhoto.open('ajax/preview-request.php?ajax=true&iframe=true&width=100%&height=100%','Preview','');
				$("#preview-request, #send-request").css("display", "");
			}
		}
	});
	
	return false;
}

