// JavaScript Document

	function validaForumlario()
	{
		conf = "";
		if((document.getElementById("email").value=="") || (document.getElementById("email").value.substring(0,1)==" "))
		{
			conf+="\n- O campo E-mail deve ser preenchido !";
		}else{
			email   = document.getElementById("email").value;
			apos    = email.indexOf("@");
			pontopos= email.lastIndexOf(".");	
		  if (apos<1||pontopos-apos<2) 
			{
				conf+="\n- Preencher E-mail corretamente!";
			}
		}
		if((document.getElementById("senha").value=="") || (document.getElementById("senha").value.substring(0,1)==" "))
		{
			conf+="\n- O campo Senha deve ser preenchido !";
		}		
		if (conf != "") 
		{
			alert(conf);
 			conf="";
  		    return false;
		}
		else 
		{
			return true;
		}
	}