function m1_over(x,y) 
{
   document.getElementById(x).style.backgroundColor="Red"
   document.getElementById(x).style.color="White"
   document.getElementById(x).style.cursor="hand";

//   if(x == null)
//      x= window;
//   x.event.srcElement.style.background="Red";
//   x.event.srcElement.style.color = '#ffffff';
//   x.event.srcElement.style.cursor = "hand";
   }

function m1_out(x) 
{
   document.getElementById(x).style.backgroundColor=""
   document.getElementById(x).style.color="Black"
   document.getElementById(x).style.cursor="";

//   if(x == null)
//      x= window;
//   x.event.srcElement.style.background='';
//   x.event.srcElement.style.color = '#000000';
//   x.event.srcElement.style.cursor = "hand";
}

function m1_click(dest) {
var url;
   url = dest;
   document.getElementById("BID").src=url
//document.all("bid").src=(url);
}