function openwindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

if(document.all && !document.getElementById) {
    document.getElementById = function(id) {
         return document.all[id];
    }
}

function makeEmail(name,host) {
		document.location.href='mailto:'+name+'@'+host;
} 

