// Menu script

//

// Created By Rob Ballou

// Updated: 7.19.02

var hi   = "#335588";
var norm = "#003366";

function menu(mnuItem, hilite) {
  if(!hilite) hilite = 0;
  if(document.getElementById)	{ // Only new browsers
	  var thisMenu = document.getElementById(mnuItem);
		if(!thisMenu) return false;
		if(hilite)
    thisMenu.bgColor = hi;
	else
	  thisMenu.bgColor = norm;
	}
}


function openWindow(url) {
	popUpWin = window.open(url,'demoWin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=640,height=420');
	if (navigator.appName == 'Netscape')	 {
		popUpWin.focus();
	}
}

	
function Windowclose() {
	parent.close()
	window.close()
	self.close()
}

