function toggleMenu(objID) {
if (!document.getElementById) return;
var ob = document.getElementById(objID).style;
ob.display = (ob.display == 'block')?'none': 'block';
}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features); 
} 