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

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


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