 var arrMClsNames=new Array(5);
 function mover(mlnkID){
   arrMClsNames[mlnkID] = document.getElementById("ML_" + mlnkID).className;
   document.getElementById("ML_" + mlnkID).className = "topNavHover";
 }
 function mout(mlnkID){
   document.getElementById("ML_" + mlnkID).className = arrMClsNames[mlnkID];
 }
 
 
 function ShowActiveX(acvxId){
  var flashContainer = document.getElementById(acvxId);
  var newflashContainer = document.getElementById("new_" + acvxId);
  newflashContainer.innerHTML = flashContainer.innerHTML;
 }

 function ShowActiveX_IE(acvxId){
  var flashContainer = document.getElementById(acvxId);
  flashMovie = document.createElement("div");
 
  flashMovie.innerHTML = decode(flashContainer.innerHTML);
  flashContainer.parentNode.insertBefore(flashMovie, flashContainer); 
 }
 
 function decode(input){  
  var output = input;  
  output = output.replace(/</g, "<");   
  output = output.replace(/>/g, ">");  
  return output;
 }

var wPop=0;
function popUpW(URLStr, left, top, width, height)
{
  if(wPop)
  {
    if(!wPop.closed) wPop.close();
  }
  wPop= open(URLStr, '', 'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
wPop.focus();
}
