function navlite()
  {
  var lh = location.href;
  for( var i = 0; i < document.links.length; i++ )
    {
    var e = document.links[i];
    if( e.href == lh )
      {
			if( e.parentNode.id == 'm1' )
				{
	      e.style.backgroundColor = 'rgb(192,63,70)';
				e.style.color = 'white';
				}
			else
				e.style.color = 'yellow';
      }
    }
  }

var s = 0;
function pause(stop)
	{
	if( stop == true )
		s = 0;
	if( parent.frames == undefined || !parent.frames.length )
		{
		if( !stop )
			location = "home.htm";
		return;
		}
	var p = parent.frames[0].document.getElementById('player');
	if( p == undefined )
		return;
	s = !s;
	try
		{
		if( s )
			{
			if( p.GetQuickTimeVersion == undefined )
				p.Pause();
			else
				p.Stop();
			}
		else
			p.Play();
		}
	catch(e)
		{
		}
	}
function stop()
	{
	pause(true);
	}