function mm_openbrwindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function vedi(id)
{
    var d = document.getElementById(id);
    if(d != null)
      d.className = (d.className == "h") ? "s" : "h"; 
}