<!--

function onError( inputObject, errorMessage )
{
	alert(errorMessage);
	inputObject.focus();
	inputObject.select();
	
}

function Mjes_Validator(theForm)
{
   
   if (theForm.SitioWeb.value != "")
  {
	  if (theForm.SitioWeb.value.indexOf('http://', 0) != -1 ||

      theForm.SitioWeb.value.indexOf('http://', 0) != -1)
  { alert("Por favor, ingrese su dirección sin http://"); theForm.SitioWeb.focus(); 
  	return false;
      }
   }
	  
  if (theForm.Asunto.value == "")
  {
   onError(theForm.Asunto,"Por favor, ingrese el asunto de su mensaje");
	return false;
      }
	  
  if (theForm.Mensaje.value == "")
  {
   onError(theForm.Mensaje,"Por favor, escriba su mensaje");
	return false;
      }
	  
return (true);
}

//-->