// JavaScript Document
function toggleDiv(hideshow){
    if(document.getElementById(hideshow).style.display == 'none'){
      document.getElementById(hideshow).style.display = 'block';
    }else{
      document.getElementById(hideshow).style.display = 'none';
    }
  }
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
