function Hilite(name, over) {
	//alert(name);
	var name = arguments[0];
	var over = arguments[1];
	var img_name;
	if(arguments[2]) {
		img_name = arguments[2];
	} else {
		img_name = arguments[0];
	}
	if(over)
		window.document.images[img_name].src = "/tsp/html/static/images/" + name + "_ov.gif";
	else
		window.document.images[img_name].src = "/tsp/html/static/images/" + name + ".gif";
}

function submitform(form) {
  form.navigatorAppName.value = window.navigator.appName;
  form.navigatorAppVersion.value = window.navigator.appVersion;
  form.navigatorAppCodeName.value = window.navigator.appCodeName;
  var cookieEnabled = (window.navigator.cookieEnabled)? true : false;
  if (typeof window.navigator.cookieEnabled == "undefined" && !cookieEnabled) { 
    document.cookie = "wickettestcookie";
    cookieEnabled = (document.cookie.indexOf("wickettestcookie")!=-1)? true : false;
  }
  form.navigatorCookieEnabled.value = cookieEnabled;
  form.navigatorJavaEnabled.value =  window.navigator.javaEnabled();
  form.navigatorLanguage.value = window.navigator.language ? window.navigator.language : window.navigator.userLanguage;
  form.navigatorPlatform.value = window.navigator.platform;
  form.navigatorUserAgent.value = window.navigator.userAgent;
  if (window.screen) {
	  form.screenWidth.value = window.screen.width;
	  form.screenHeight.value = window.screen.height;
	  form.screenColorDepth.value = window.screen.colorDepth;
  }
  form.utcOffset.value = (new Date().getTimezoneOffset() / -60);
  return true;
}