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)  {
	 	altura = 200;
	largura = 300;
	
	w = screen.width;
	h = screen.height;
	meio_w = w/2;
	meio_h = h/2;
	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;

  wnd=window.open(url, 'busca', 'height='+altura+',width='+largura+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,top='+meio1+',left='+meio2+'');

}

function AbreCadastro(url)  {
	 	altura = 560;
	largura = 500;
	
	w = screen.width;
	h = screen.height;
	meio_w = w/2;
	meio_h = h/2;
	altura2 = altura/2;
	largura2 = largura/2;
	meio1 = meio_h-altura2;
	meio2 = meio_w-largura2;

  wnd=window.open(url, 'busca', 'height='+altura+',width='+largura+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,top='+meio1+',left='+meio2+'');

}



function abreJogo(url){

var width = 800; 

var height = 600; 

var left = 150; 

var top = 80; 



window.open('/popupJogo.php?jogo='+url,'Teste','width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, resizable=no, margin-top=0, fullscreen=no'); 





}





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'); 

		

}




