function prepare()
{
	var start = location.search.indexOf('?');
	var end   = location.search.indexOf('&');
	var menu1 = location.search.substring(start+1,end);	
	var menu2 = location.search.substring(end+1);

	if (menu1=='') {
	  menu1 = 'm11'; 
	  menu2 = '0';
	}

	color = '#5A6794';

    	//if (document.layers) {
      	//  window.document.layers[menu1].bgColor = color; }
    	if (document.all)
      	  window.document.all[menu1].style.background = color;	


	color = '#363F78';
	
	if (menu2!='0') 
	{
    	//  if (document.layers) {
      	//    window.document.layers[menu2].bgColor = color; }
    	if (document.all)
      	  window.document.all[menu2].style.background = color;	
	}
}

function mouseOver(cell,color)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#363F78';     
   }
}

function mouseOut(cell,color)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = color;
   }
}

function mouseClick(cell)
{
   if(event.srcElement.tagName=='TD')
   {
      cell.children.tags('A')[0].click();
   }
}