//<script>

//SCREEN RESOLUTION TEST
var MSIEIndex = navigator.userAgent.indexOf("MSIE");
if (MSIEIndex == -1 ||
	navigator.userAgent.substring((MSIEIndex + 5),(MSIEIndex + 6)) < 5 ||
	screen.width<800 || screen.height<600) {
	top.location.href="noie5.htm";
}


var login = "", pwd = "";

function Check_Enter(){
	k = window.event.keyCode;
	if(k==13){
	window.event.keyCode = null;
	user_login();
	}
}

function user_login() {
	login = frmLogin.txtLogin.value;
	pwd = frmLogin.txtPwd.value;
	
	if(login=='') {
		alert("Deve introduzir o nome do utilizador.");
		frmLogin.txtLogin.focus();
		return;
	}
	if(pwd=='') {
		alert("Deve introduzir a password.");
		frmLogin.txtPwd.focus();
		return;
	}
	frmLogin.submit();
}

function Mail(){
	var s="mailto:suporte.agefenet@indracompany.com?subject=Pedido de Adesao AGEFENet&body="
	var msg="";
	msg ="Formulario de Adesao ao Serviço AGEFENet\n";
	msg=msg+"Os campos marcados com * sao de preenchimento obrigatorio.\n\n";
	msg=msg+"Nome da Empresa: \n";
	msg=msg+"Pessoa de contacto*: \n";
	msg=msg+"Telefone*: \n";
	msg=msg+"e-mail*: \n";
	msg=msg+"Observacoes: \n";
	msg=msg+"\n\n";
	msg=msg+"Brevemente recebera os dados de acesso ao Servico AGEFENet.";
	msg=s+escape(msg);
	contacto.href=msg;
}
