function noSpam(user,domain,suffix) {
locationstring = "mailto:" + user + "@" + domain + "." + suffix;
window.location = locationstring;
}

function getId(Id) {
if(document.all)
return document.all[Id];

if(document.getElementById)
return document.getElementById(Id);

if(document.layers)
return document.layers(Id);
}

function show(show) {
getId(show).style.display="block";
}

function hide(hide) {
getId(hide).style.display="none";
}