<!--
	var tableClassName="list";
	var headerClassName="header";
	function setCells(){
		if(bw.ie6 && window.parent && window.parent.document.getElementById("loader") 
									&& window.parent.document.getElementById("loader").style)
			window.parent.formatLocationViewer();
		var popHolder;
		var sTTbody;
		if( (sTTbody=document.getElementById("sTTbody"))
					&& (sTTbody.offsetHeight > 455) && !bw.ie)
			sTTbody.style.height="455px";
		var targetTables=document.getElementsByTagName("TABLE");
		var targetTable;
		var targetRow;
		var targetCell;
		for(h in targetTables){
			targetTable=targetTables[h];
			if(targetTable.className==tableClassName){
				for(i=0; targetRow=targetTable.rows[i]; i++){
					var rowRef=false;
					for(j=0; targetCell=targetRow.cells[j]; j++){
						if(targetCell.parentNode.className.indexOf(headerClassName) < 0){
							targetCell.onmouseover=highLight;
							targetCell.onmouseout=lowLight;
							if(j==0 && targetCell.firstChild && targetCell.firstChild.tagName!="INPUT" && targetCell.firstChild.href)
								rowRef=targetCell.firstChild.href;
							if(rowRef!==false && targetCell.firstChild && targetCell.firstChild.tagName!="INPUT" && (!targetCell.firstChild.href || j==0) && j!=5)
								targetCell.onclick=goThere;
						}
					}
				}
			}
		}
	}
	var originalCellColor="#FFFFFF";
	var originalBorderColor="#FFFFFF";
	var highLightCellColor="#fafaff";
	var highLightBorderColor="ffffff";
	function highLight(origin){
		var parentRow=this.parentNode;
		for(i in parentRow.cells){
			if(parentRow.cells[i].style){
//				originalCellColor=parentRow.cells[i].style.backgroundColor;
//				originalBorderColor=parentRow.cells[i].style.borderColor;
				parentRow.cells[i].style.backgroundColor=highLightCellColor;
//				parentRow.cells[i].style.borderColor=highLightBorderColor;
			}
		}
	}
	function lowLight(){
		var parentRow=this.parentNode;
		for(i in parentRow.cells){
			if(parentRow.cells[i].style){
				parentRow.cells[i].style.backgroundColor=originalCellColor;
//				parentRow.cells[i].style.borderColor=originalBorderColor;
			}
		}
	}
	function goThere(){
		window.location=this.parentNode.cells[0].firstChild.href;
	}
//-->
