//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;

//-->


//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);
	}
//-->

 // Pop-up window function
 function openWindow(theURL,winName,features)
{
  	window.open(theURL,winName,features);
}
 
 // <CONFIG.JS>
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 		= "#F6EABA";		//Yellow
HM_PG_FontColorOver 	= "Black";		//Gold #C99034
HM_PG_BGColor 			= "#9C5B33";		//Dark Brown
HM_PG_BGColorOver 		= "#F6EABA";		//Medium Brown
HM_PG_ItemPadding 		= 3;

HM_PG_BorderWidth 		= 1;
HM_PG_BorderColor 		= "black";
HM_PG_BorderStyle 		= "solid";
HM_PG_SeparatorSize 		= 1;
HM_PG_SeparatorColor 	= "#F6EABA";		//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;

//