<!--

var navigationOn = 0;
var currentSection = null;
var sectionType = null;

// PRELOAD ROLLOVER IMAGES
if (document.images)
{

	IindicBlink = new Image(7, 6);
	IindicBlink.src = 'images/nav_indicator_blink.gif';
	
	IindicRed = new Image(7, 6);
	IindicRed.src = 'images/nav_indicator_select.gif';

	IindicOff = new Image(7, 6);
	IindicOff.src = 'images/nav_indicator_off.gif';
}

function dimg(thisID,section)
{
  	if ((document.images)&&(navigationOn == 0))
	{
		// CHANGE LED
		document["led"].src = 'images/nav_led_' + section + '.gif';
		
		// ACTIVATE INDICATOR
		document[thisID].src = IindicRed.src;
	}
}

function dimgOff(thisID)
{
  	if ((document.images)&&(navigationOn == 0))
	{
		// RESET LED
		document["led"].src = 'images/nav_led_select.gif';
		
		// RESET INDICATOR
		document[thisID].src = IindicOff.src;
	}
}

function dimgClick(thisID,section,type)
{
  	if (document.images)
	{
		// SET LED
		document["led"].src = 'images/nav_led_wait.gif';
		
		if (thisID != null)
		{
			// BLINKING INDICATOR
			document[thisID].src = IindicBlink.src;
		}
		
		// DISABLE EVENTS
		navigationOn = 1;
		
		// SEND TO PAGE
		currentSection = section;
        sectionType = type;
		setTimeout("navigateTo()",750);
	}
}

function navigateTo()
{
	document.location.href = currentSection + sectionType;
}

function windowpane(url)
{

if (url == "")
	return false;

i = Math.random() * 1000;

winName = Math.round(i) + "window";

window.open(url,winName,'directories=no,height=220,width=490,hotkeys=no,location=no,menubar=no,scrollbars=yes,resizable=no,status=no,toolbar=no');

return false;
}

//-->
