// 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)
{
	if (dropdown.options[dropdown.selectedIndex].value!='') {
		top.location=dropdown.options[dropdown.selectedIndex].value;
	}
}

function dd_keypress(e) {
	e = (e) ? e : window.event;
	if (e.keyCode == 13) change_z(document.getElementById('links'));
}
//-->
