		function Hide(str) {
		x = document.getElementById(str);
		x.style.display = 'none';
		}
		
		function Show(str) {
		x = document.getElementById(str);
		x.style.display = 'block';
		}
		
		
		var thisurl = location.href.substring(location.href.lastIndexOf("http://")+7, location.href.length); 
var colorstxt = thisurl.substring(0, thisurl.lastIndexOf('/'))+"/colors.txt";