function validarCarrito()
	{
		if($('nombre_carrito').value=='')
		{
			$('nombre_carrito').focus(); 
			alert("Por favor ingrese su nombre.");
			return false;
		}

		if($('email_carrito').value=='')
		{
			$('email_carrito').focus(); 
			alert("Por favor ingrese su Mail.");
			return false;
		}
		if(-1 == $('email_carrito').value.indexOf("@"))
		{ 
			$('email_carrito').focus(); 
			alert("Su Mail debe contener un '@' ."); 
			return false; 
		}
		if(-1 != $('email_carrito').value.indexOf(","))
		{ 
			$('email_carrito').focus(); 
			alert("Su Mail no debe tener ',' ."); 
			return false; 
		}
		if(-1 != $('email_carrito').value.indexOf("#"))
		{ 
			$('email_carrito').focus(); 
			alert("Su Mail no debe tener '#' ." ); 
			return false; 
		}
		if(-1 != $('email_carrito').value.indexOf("!"))
		{ 
			$('email_carrito').focus(); 
			alert("Su Mail no debe tener '!' ." ); 
			return false; 
		}
		if(-1 != $('email_carrito').value.indexOf(" "))
		{ 
			$('email_carrito').focus(); 
			alert("Su Mail no debe tener espacios." ); 
			return false; 
		}
		if($('email_carrito').value.length == ($('email_carrito').value.indexOf("@")+1) )
		{
			$('email_carrito').focus();
			alert("Su Mail debe tener un dominio despues del '@'.");
			return false;
		}
		if(-1 == $('email_carrito').value.indexOf(".com"))
		{ 
			$('email_carrito').focus(); 
			alert("Su Mail es invalido."); 
			return false; 
		}
		if($('email_carrito').value.length == 0)
		{ 
			$('email_carrito').focus(); 
			alert("Please enter your email."); 
			return false; 
		}
		
		if($('comentario_carrito').value=='')
		{
			$('comentario_carrito').focus(); 
			alert("Por favor ingrese su comentario.");
			return false;
		}
	$('form_carrito').submit();
}
