function switchMenu(obj,img) {
	var el = document.getElementById(obj);
	if ( el.style.display == "none" ) {
		el.style.display = 'block';
		img.src = "imagens/ico_barra_horario.gif";
		
		
	}
	else {
		el.style.display = 'none';
		img.src = "imagens/ico_barra_horario_estender.gif";
	}
}

//-->
function MM_changeProp(objId,x,theProp,theValue) { //v9.0
  var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
    if (theValue == true || theValue == false)
      eval("obj.style."+theProp+"="+theValue);
    else eval("obj.style."+theProp+"='"+theValue+"'");
  }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
