<!--

// Check Which Navigator???

function init() {
	QuickView( 1 );
	IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
}

function initNonProduct() {
	IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
}

function ShowMenu( strMenuParentID, strMenuID, intPosition ) {
	var objMenu = document.getElementById( strMenuID ).style;
	var intLeft = document.body.clientWidth

	var IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	var IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;

	objMenu.visibility = "visible";
	if (IE5 || IE6) {
		objMenu.left = ( ( intLeft - 618 ) / 2 ) + ( intPosition * 216 );
	} else {
		objMenu.left = ( ( intLeft - 618 ) / 2 ) + ( intPosition * 216 );
		// objMenu.left = ( 20 + ( intPosition * 216 ) );
	}
	Highlight( strMenuParentID, true );
}

function HideMenu( strMenuParentID, strMenuID ) {
	var objMenu = document.getElementById( strMenuID ).style;
	objMenu.visibility = "hidden";
	Highlight( strMenuParentID, false );
}

function Highlight( strMenuID, bSwitch ) {
	var objMenu = document.getElementById( strMenuID ).style;
	if ( bSwitch ) {
		objMenu.color = "#ffffff";
		objMenu.backgroundImage = "url( media/images/dropdown_on.gif )";
	} else {
		objMenu.color = "#ffffcc";
		objMenu.backgroundImage = "url( media/images/dropdown_off.gif )";
	}
}

function Goto( strURL ) {
	//	document.URL = strURL;
	window.location = strURL;
}
// -->
