function m2_over(x) 
{
   document.getElementById(x).style.backgroundColor="White"
   document.getElementById(x).style.color="Red"
   document.getElementById(x).style.cursor="hand";

//   if(x == null)
//      x= window;
//   x.event.srcElement.style.background="White";
//   x.event.srcElement.style.color = '#ff0000';
//   x.event.srcElement.style.cursor = "hand";
   }

function m2_out(x) 
{
   document.getElementById(x).style.backgroundColor=""
   document.getElementById(x).style.color="White"
   document.getElementById(x).style.cursor="";

//   if(x == null)
//      x= window;
//   x.event.srcElement.style.background='';
//   x.event.srcElement.style.color = '#ff0000';
//   x.event.srcElement.style.cursor = "hand";
}

function m2_click(dest) {
var pageid;
pageid = dest;
var url = "default.asp?pageid="+pageid;
var url = "http://arlington1stop/cc1stop/"+url+
window.open(url,"_self");
//document.all("bid").src=(url);
}
