function m_over() 
{
	
   window.event.srcElement.style.background="#ff9933";
   window.event.srcElement.style.color = "white";
   window.event.srcElement.style.cursor = "hand";

 
   
   //refer to MSDN - "event object"  then select "attributes" 
   //scroll to  "srcElement" then open the link to "srcElement"

 }



function m_out() 
{
	   
   window.event.srcElement.style.background="f9fffa";
   window.event.srcElement.style.color = "steelblue";
   window.event.srcElement.style.cursor = "default";
}




function m_click(dest,nme) 
{
   	
   var url, winname;
   url = dest;
   winname = nme
   window.open(url, winname, "height=400, width= 500, scrollbars=yes, left=250, top=100")

   // refer to MSDN -"document object model" then link to "DHTML 
   // object model" (at the bottom of the page) the link to 
   // "window" (at about the middle of the page) then select 
   // "method" scroll to "open" then  open the link to "open"
}





function m_click1(dest)  // this is working- the new page replaces
{			 // the old page.
   	
   var url ;
   url = dest;
   
   window.location.href(url);

   // refer to MSDN -"location object" then from the attributes select
   //  "href"  open the link to "href"
}


function showmenu(elmnt)
{
	document.all(elmnt).style.visibility = "visible"
}


function hidemenu(elmnt)
{
	document.all(elmnt).style.visibility = "hidden"
                 
}      
	


function endsession()
{
	window.document.close()
                 
}  