function validar()
{
        with (document.contactar)
                {
            
               result1 = esta_ple(email);
               result2 = mira_email(email);
			   result3 = esta_ple(comentarios);                                           

               
               if (result1 == 0)
               {
               alerta_no('e-post');
	       	   email.focus();
               }
               else if (result2 == 9)
               {
               alert('E-postadressen du har oppgitt er ikke korrekt');
	           email.focus();
               }
			   else if (result3 == 0)
               {
               alerta_no('kommentarer');
			   comentarios.focus();
               }
	       	   else submit();
       }
}


function alerta_no (str)
{
	alert("Kontroller feltet " + str + " ...");
}
