function nospam(user,domain, assunto) {
 locationstring = "mailto:" + user + "@" + domain + "?subject=" + assunto;
 window.location = locationstring;
}




var Expande;

function exp (imagem, w, h) { 
texto = "<img src='" + imagem + ".jpg' border='0'>";
com = "toolbar=yes,directories=no,status=no,scrollbars=no,menubar=no,left=215,top=10, width=" + w + ",height=" + h;

if (Expande && !Expande.closed)
   {Expande.close();}
Expande=window.open('','Expande', com ); 
Expande.document.write('<html>');
Expande.document.write('<title>Help Desk Day</title>');
Expande.document.write('<body leftmargin="0" bgcolor="white" topmargin="0" marginwidth="0" marginheight="0">');
Expande.document.write('<DIV align=center>');
Expande.document.write(texto);
Expande.document.write('</body>');
Expande.document.write("</html>");
Expande.document.close();
Expande.window.focus() } 




function pagina(){
   if (document.form1.nome.value.length == 0){
    alert('Preencha o campo nome antes de prosseguir.')
    document.form1.nome.focus();
    return false}
	
	if (document.form1.email.value.length == 0){
    alert('Preencha o campo email antes de prosseguir.')
    document.form1.email.focus();
    return false}
	
	}


function AbreJanela(qual, nome, w, h, l, t) { 
SmallWin=window.open(qual,nome,"toolbar=no,directories=no,status=no,scrollbars=no,menubar=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t);
SmallWin.window.focus() ;
} 
