function rowOverEffect(object) {
  object.className = 'mouseOver';
}

function rowOutEffect(object, thisclass) {
  if( thisclass == '') {
    object.className = '';
  } else {
    object.className = thisclass;
  }
} 

function help(code, my_lang) {
  var name = 'HelpDesk';
  window.open(my_lang+'/help/'+code+'.html', name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=500,height=520,screenX=150,screenY=150,top=150,left=150');
}

function ShowH(div, title, desc) {
 div = document.getElementById(div);
 div.style.display = 'inline';
 //div.style.z-index = '50000';
 div.style.position = 'absolute';
 div.style.width = '270';
 div.style.backgroundColor = 'lightyellow';
 div.style.border = 'dashed 1px black';
 div.style.padding = '10px';
 div.innerHTML = '<b class="help">' + title + '</b><br /><div class="help">' + desc + '</div>';
}
function HideH(div) {
  div = document.getElementById(div);
  div.style.display = 'none';
}
function mbManageLayers (layerName, action) {
  lay = document.getElementById(layerName);
  if (lay.style.display == 'none') {
     lay.style.display='block'; 
  } else {
     lay.style.display='none'; 
  }
}