// Opens pop up on the homepage
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
//-->

// Drop down quick links menu
function change_z(dropdown)
{
	top.location=dropdown.options[dropdown.selectedIndex].value;
}

function dd_keypress(e) {
	e = (e) ? e : window.event;
	if (e.keyCode == 6) change_z(document.getElementById('links'));
}
//-->

<!--
function popItUp(url) {
	newwindow=window.open(url,'name','height=800,width=800,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

