function highlightResultsRow(item) {
		item.style.backgroundColor = '#5bb0d5'; /* rgb(152,104,567) */
		item.style.color = 'rgb(255,255,255)';
		item.style.cursor = 'pointer';	
	}
	function unhighlightResultsRow(item) {
		item.style.backgroundColor = '#4d8fac'
		/* item.style.backgroundColor = 'transparent'; */
		item.style.color = 'rgb(255,255,255)';
	}
	
	
	function newsURL(ID, EventName) {
		location.href = "/schedule/" + ID + "/" + EventName + "/";
	}
	function resultsURL(ID, EventName) {
		location.href = "/results/event/" + ID + "/" + EventName + "/";
	}	
	
	
	function highlightInput(object) {
		
		object.style.borderColor='rgb(246,134,32)'; 
		object.style.borderStyle='solid';
		object.style.borderWidth='1px';
		object.style.color='navy';
	}
	
	function unhighlightInput(object) {
		
		if (object.value) {
			object.style.color='navy';
		}
		object.style.borderColor='#BBB';
		object.style.borderWidth='1px';	
	}
	
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'block':(v=='hide')?'none':v; }
    obj.display=v; }
}
	


