function LmOverMenu(elem)
{
elem.style.backgroundColor = '#000000';
elem.style.cursor = 'hand'
elem.style.borderColor = '#DCDCDC';
//elem.children.tags('A')[0].style.textdecoration = 'underline';
}
function LmOver(elem)
{
elem.style.backgroundColor = '#DCDCDC';
elem.style.cursor = 'hand'
elem.children.tags('A')[0].style.color = '#FFFFFF';
}
function LmOut(elem)
{
elem.style.backgroundColor = '#ffffff';
elem.children.tags('A')[0].style.color = '#006633';
}
function LmOutMenu(elem)
{
elem.style.backgroundColor = '#006633';
elem.style.borderColor = '#006633';
}
function LmUp(path)
{location.href = path;}

function RunIntro()
{reWin=window.open('flashintro.htm','CoasttoCoast','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=500,height=300,top=100,left=100')}

function trim(string)
{
  var ch = string.substring(0,1);
  while(ch==" ")
  {
    string = string.substring(1,string.length);
    ch = string.substring(0,1);
  }
  
  ch = string.substring(string.length-1,string.length);
  while(ch==" ")
  {
    string = string.substring(0,string.length-1);
    ch = string.substring(string.length-1,string.length);
  }
  return string;
}
