<!--
// abre janela maximizada
function abreJanela(url,janela,width,height){
W = width;
H = height;

window.open(url,janela,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+W+",height="+H+",top=0,left=0");
}

<!--
// cadastra o email no sistema de newsletter mega internet
function cadmail(){
	window.open('http://apps.megainternet.com.br/crm/cadmail.asp?nome='+document.emailx.nome.value+'&email='+document.emailx.email.value+'&user='+document.emailx.user.value+'&grp='+document.emailx.grp.value,'email','resizable=no,width=380,height=210,scrollbars=no');
	document.emailx.reset()
}
function limpa() {
	document.emailx.email.value=''
}
