// JavaScript Documentfunction resetContentHeight() {	// get the value of the leftColumn height	h = document.getElementById("leftColumn").scrollHeight;		// set marginHeight to minus the value of the left Column	document.getElementById("content").style.marginTop = "-" + h + "px";		// if height isnt big enough for side column, make it bigger	if(document.getElementById("content").scrollHeight <= h) {		document.getElementById("content").style.height = h + "px";	}}function setOn(el) {	agt = navigator.userAgent.toLowerCase();	if((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1)) {		el.style.background = '#323232';		el.style.cursor = "hand";	}}function setOut(el) {	agt = navigator.userAgent.toLowerCase();	if((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1)) {		el.style.background = '#8b9964';		el.style.cursor = "auto";	}}function setGo(l) {	document.location.href=l;}