
//these two funcs handle mouseover highlights for rows in tables
function mOver(row,altText, thisColour) {	
		
		row.bgColor=thisColour;
		row.title= altText;	
}
//the mouse out sets the bg to 'thisColour'
function mOut(row, thisColour){
	row.bgColor=thisColour;
}

function doEmail(thisName, thisDomain,text){
	emailE=thisDomain
	emailE=(thisName + '@' + emailE)
	document.write('<a href="mailto:' + emailE + '">' + text + '</a>')
}
