function Go() {
	var selectObj = document.clabssearch.quicknav
	if (selectObj.options[selectObj.selectedIndex].value != "wait") {
		location = selectObj.options[selectObj.selectedIndex].value
	}
}

function Go1() {
	var selectObj = document.myselect.quicknav1
	if (selectObj.options[selectObj.selectedIndex].value != "wait") {
		window.location = selectObj.options[selectObj.selectedIndex].value
	}
}

function formHandler(){
var URL = document.myselect.quicknav1.options[document.myselect.quicknav1.selectedIndex].value;
window.location.href = URL;
}

function put()
{
option=document.form[0].quicknav1.options[document.form[0].quicknav1.selectedIndex].text
txt=option
document.myselect[0].favorite.value=txt
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=Yes,resizable=no,maximize=no,dependent=true,titlebar=no,toolbar=no'
	win = window.open(mypage,myname,settings)
	//if(!win.window.focus)
	win.window.focus();
}
