//BROWSER VERSION

NS4 = (document.layers);
IE4 = (document.all);
ver4 = (NS4 || IE4);
IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
isMac = (navigator.appVersion.indexOf("Mac") != -1);
isMenu = (NS4 || (IE4 && !isMac) || (IE5 && isMac));

function popUp(){return};
function popDown(){return};

if (!ver4) event = null;

//-->

//MENU DEFS
if (isMenu) {
    menuVersion 		= 3;
    menuWidth 		= 120;
    childOverlap 		= 50;
    childOffset 		= 5;
    perCentOver 		= null;
    secondsVisible 		= .5;
    
    fntCol 		= "gold";
    fntSiz 			= "8";
    fntBold 		= true;
    fntItal 		= false;
    fntFam 		= "verdana";
    
    backCol 		= "blue";	
    overCol 		= "black";	
    overFnt 		= "yellow";

    borWid 		= 1;
    borCol 		= "#C6C3C6";
    borSty 		= "solid";
    itemPad 		= 3;
 
    separator 		= 1;
    separatorCol 		= "#C6C3C6"; //dark gray

    isFrames 		= false;
    navFrLoc 		= "left";

    keepHilite 		= true;
    NSfontOver 		= true;
    clickStart 		= false;
    clickKill 		= true;
}
//-->

//POPUPS
function CancelWindow() {
	self.close();
}

function PopUpWindow (url, hWind, nWidth, nHeight, nScroll, nResize) {
	var cToolBar = 'toolbar=0,location=0,directories=0,status=' + nResize + ',menubar=0,scrollbars=' + nScroll + ',resizable=' + nResize + ',width=' + nWidth + ',height=' + nHeight;
	var popupwin = window.open(url, hWind, cToolBar);
}

function openWindow(url){
	newWindow=window.open(url,'newWin','tollbar=yes,location=yes,scrollbars=yes,width=300,hight=200')
}

function openWindow2(url){
	newWindow=window.open(url,'newWin','tollbar=yes,menubar=yes,location=yes,scrollbars=yes,directories=yes')
}

function closeWindow()
	{
	if(newWindow && !newWindow.closed)
		{
			newWindow.close()
		}	
	}
	
function PopUpWindowFull (url, hWind, nWidth, nHeight, nResize)
	{
	var cToolBar = "toolbar=yes,location=yes,directories=yes,resizable=1,status=" + nResize + ",menubar=yes,scrollbars=yes,width=" + nWidth + ",height=" + nHeight
	var popupwin = window.open(url, hWind, cToolBar);
	}
//-->

// ROLLOVERS
function img_act(imgName)
{
        imgOn = eval(imgName + "_over.src");
        document [imgName].src = imgOn;
}

 function img_inact(imgName)
{
        imgOff = eval(imgName + "_off.src");
        document [imgName].src = imgOff;
}

 //POP-UP WINDOW
 function openWindow(theURL,winName,features)
{
  	window.open(theURL,winName,features);
}

 
 // GLOBAL PAGE SETTINGS
if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

HM_PG_MenuWidth		= 220;
HM_PG_FontFamily 	= "Arial,sans-serif";
HM_PG_FontSize		= 8.5;
HM_PG_FontBold		= true;
HM_PG_FontItalic 		= 0;
HM_PG_FontColor 		= "#FFFF99";
HM_PG_FontColorOver 	= "#003399";
HM_PG_BGColor 		= "#003399";
HM_PG_BGColorOver 	= "#FFFF99";
HM_PG_ItemPadding 	= 3;

HM_PG_BorderWidth 	= 1;
HM_PG_BorderColor 	= "yellow";
HM_PG_BorderStyle 	= "solid";
HM_PG_SeparatorSize 	= 1;
HM_PG_SeparatorColor 	= "yellow";

HM_PG_ImageSize 		= 5;
HM_PG_ImageHorizSpace 	= 0;
HM_PG_ImageVertSpace 	= 2;

HM_PG_KeepHilite 		= true;
HM_PG_ClickStart 		= 0;
HM_PG_ClickKill 		= false;
HM_PG_ChildOverlap 	= 2;
HM_PG_ChildOffset 	= -2;
HM_PG_ChildPerCentOver 	= null;
HM_PG_TopSecondsVisible 	= .5;
HM_PG_StatusDisplayBuild 	=0;
HM_PG_StatusDisplayLink 	= 0;
HM_PG_UponDisplay 	= null;
HM_PG_UponHide 		= null;
HM_PG_RightToLeft 	= false;

HM_PG_CreateTopOnly 	= 1;
HM_PG_ShowLinkCursor 	= 1;
HM_PG_NSFontOver 	= true;

//
