var user;
var domain;
var suffix;
function jemail(user, domain, suffix) {
document.write( '<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>' );
}

function switchto(form) {
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

function surfto(form) {
        var myindex = form.dest.selectedIndex;
        window.open( form.dest.options[myindex].value, 'link' );
}

