<!-- 
function openURL()
{ 
	selectedInd = document.AutoGo.Redirector.selectedIndex; 
	newURL = document.AutoGo.Redirector.options[selectedInd].value;
	top.location.href = newURL; 
}

browser_version= parseInt(navigator.appVersion);
browser_type = navigator.appName;

if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) {
	document.write("<form name=AutoGo>");
	document.write("<select name=Redirector class=field onChange=openURL();>");
} 
else {
	document.write("<form name=AutoGo>");
	document.write("<select name=Redirector onChange=openURL();>");
}

document.write("<option value=#>Quick Links</option>");
document.write("<option value=/company_management_team.html>Management</option>");
document.write("<option value=/products_faces_40.html>FACES 4.0</option>");
document.write("<option value=/products_faces_demos.html>FACES Demos</option>");
document.write("<option value=/tech_support_overview.html>Tech Support</option>");
document.write("<option value=/registration/index.php>Register Products</option>");
document.write("<option value=/media_center_press_releases.html>Press Releases</option>");
document.write("<option value=/company_contact_us.html>Contact Us</option>");
document.write("</select></form>");
//-->