// Highlight aternate rows in a table.// Apply the tableAltRows class to a table you want 'highlit.'function tableAltRows() {	if (document.getElementsByTagName) {		var tables = document.getElementsByTagName('table');		for (var i = 0; i < tables.length; i++) {			if(tables[i].className=='tableAltRows') {				var trs = tables[i].getElementsByTagName('tr');				for (var j = 0; j < trs.length; j+=2) {					trs[j].className = 'rowTint';				}			}		}	}}function openWindow(theURL,winName,features) {  workspace = window.open(theURL,winName,features);}function refreshWorkspace() {  if(worspace && !workspace.closed){    /*workspace.document.body.style.backgroundColor="#333333";*/    workspace.location = workspace.location;  }}// Function callswindow.onload=function() {	tableAltRows();}