function SendEMail(who,where){
  window.open("mailto:"+who+"@"+where);
}
function JonesPopUp(URL,name,fat,ugly,scroller) {
	width = fat;
	height = ugly;
	if (scroller=="yes") {
		eval("page" + name + " = window.open(URL, '" + name + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + "');");
	} else {
		eval("page" + name + " = window.open(URL, '" + name + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + "');");
	}
}

