var bVer = navigator.appName;
var bNum = parseInt(navigator.appVersion);

// Go to URL
function goUrl(strUrl) {
  if (window.parent != null)
    window.parent.location.href = strUrl;
  else
    window.location.href = strUrl;
}

// Shifts the background on object
function menuOver(obj) {
	obj.style.background='#800000';
}

// Shifts the background on object
function menuOut(obj) {
	obj.style.background='#000080';
}

// Shifts the background on object
function submenuOver(obj) {
	obj.style.background='#800000';
}

// Shifts the background on object
function submenuOut(obj) {
	obj.style.background='#000080';
}

