function MostraAlturaJanela(){
//scroll="no"
	if (screen.width == 800) {
		document.getElementById('tabela1').height = screen.height-155;
	} if (screen.width == 1024) {
		document.getElementById('tabela1').height = screen.height+200;
	} if (screen.width == 1152) {
		document.getElementById('tabela1').height = screen.height-155;
	}
	//alert(screen.height);
}//function



function AbrePopup(theURL,winName,features) {
  window.open(theURL,winName,features);
};


function validarEmail(){
if ((document.forms[0].Email.value.indexOf ('@',0)==-1) || (document.forms[0].Email.value.indexOf ('.',0)==-1)){
    alert("Favor digitar e-mail válido!");
    return false;
    }
return true;
}