function selectHandler(select) {

				var page = select.options[select.selectedIndex].value;
				if(page!="none"){
					document.location.href = page;
				}
}
function popup(href){

    screen_width = .75*screen.availWidth;
    screen_height = .75*screen.availHeight;
    resize = ",resizable=yes";

    newwindow = eval("window.open(href,'','width=" + parseInt(screen_width) + ",height=" + parseInt(screen_height) + resize + "')");
}

function leftBlur() {
	var xx = document.getElementById("btnGo");

	//xx.style.color = "#000000";
	xx.style.borderColor = "#FFFFFF";
	xx.style.borderWidth = "1px";
	xx.style.borderStyle = "solid";
	//xx.style.backgroundColor = "#FFFFFF";
}

function leftFocus() {
	var xx = document.getElementById("btnGo");

	//xx.style.color = "#FFFFFF";
	//xx.style.backgroundColor = "#FF9900";
	xx.style.borderColor = "#C0C0C0";
	xx.style.borderWidth = "1px";
	xx.style.borderStyle = "solid";

}
