// javascript document

function writeEmail(tla,dom,nam) {
document.write("<a href='mailto:"+nam+"@"+dom+"."+tla+"'>"+nam+"@"+dom+"."+tla+"</a>");
}

function switchVal(e,o) {
// e is the element  - o is the orginal value


if (e.value==o) e.value=""; 
}
function checkVal(e,o) {
// e is the element  - o is the orginal value
if (e.value=="") e.value=o;
}

function def(phrase) {
var w=window.open("definitions/index.asp?d="+phrase,"Definition","top=50,left=50,toolbar=0,location=0,resize=1,scrollbar=1");
w.focus();
}

