function trHighlight()
{
	var rows = document.getElementsByTagName("tr");
	for (i=0; i < rows.length; i++) {
		rows[i].onmouseover = function() { this.className='trHover' };
		rows[i].onmouseout = function() { this.className='' };
/*		rows[i].onclick = function() {
			var cell = this.getElementsByTagName("td")[0];
			var link = cell.firstChild;
			var id = link.href;
			location.href=id;
		}
*/	}
}
window.onload = trHighlight;




function mailpage()
{
mail_str = "mailto:?subject= " + document.title;
mail_str += "&body=Additional information on " + document.title;
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}
