// JavaScript Document

function openwindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function makeEmail(name,host) {
		document.location.href='mailto:'+name+'@'+host;
} 
