//Layer visibility

	function showLayer(layerName)  {  
	document.getElementById(layerName).style.visibility='visible'; 
	}
	
	function hideLayer(layerName)  {  
	document.getElementById(layerName).style.visibility='hidden';  
	}
	
function newWindow(tc) {
		tcWindow = window.open(tc,'tcWin', 'width=650,height=650,scrollbars=yes,background-color=#000000')
		tcWindow.focus()
	}
	