function tuneLinks()
{
 var AArray = document.all.tags("A");
 for (var i = 0; i < AArray.length; i++)
     {
       if ((AArray[i].className=="a-disabled") || (AArray[i].className=="lang-dis") )
                   {
                     AArray[i].href="#";
                   }
     }
}

function openWindow(theURL,winName,features) { 
  if (!features) features="status=yes,toolbar=no,menubar=no,location=no";
  return window.open(theURL,winName,features);
}

function sm(params) { 
  sm_wnd = openWindow("sendmsg.php?"+params,'',"status=yes,toolbar=no,menubar=no,location=no, width=700,height=550");
  sm_wnd.focus();
  
}


