function validaHome(nomeform){

 if (nomeform.nome.value=="" || nomeform.nome.value.indexOf(' ', 0) == -1)
    { alert ("\nPor favor, digite seu nome completo."); return false; }
  if (nomeform.tipo_usuario.selectedIndex ==0)
    { alert ("\nEscolha o tipo de usuário."); return false; }
  return true;
 }

function validaNovidades(nomeform){
   	if (nomeform.email.value.indexOf('@', 0) == -1 || nomeform.email.value.indexOf('.', 0) == -1)
    	{ alert ("\nE-mail inválido."); return false; }
   return true;
   Abre('');
}

function Abre(url)  {
  wnd=window.open(url, "busca", "height=200,width=300,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
}
function AbreCadastro(url)  {
  wnd=window.open(url, "busca", "height=560,width=500,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
}

function popup(url,largura,altura){

		 
	var width =largura; 
	var height = altura; 
	 
	var left = 250; 
	var top = 180; 
	
	var pag = url;
	window.open(pag,'Teste','width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes,fullscreen=no'); 
		
}