function FrontPage_Form1_Validator(theForm)
{

	if (theForm.archivo.value =="")
	{
	alert("El campo Banner es obligatorio");
	theForm.archivo.focus();
	return (false);
	}
	if (theForm.posicion.value == "" || theForm.posicion.value == " " || theForm.posicion.value == "  " || theForm.posicion.value == "    ")
	{
	alert("El campo Posición es obligatorio");
	theForm.posicion.focus();
	return (false);
	}
 
}
 