function open_win(URL, w, h, winName) {
	newWin = window.open(URL, winName, 'width='+w+',height='+h+',menubar=0,scrollbars=1,resizable=1,location=0,status=0');
	newWin.focus();
}

function clear_search() {
	if(document.gs.q1.value == 'Search...') document.gs.q1.value = '';
}

function toggleHelp() {
	help = document.getElementById('helpContent');
	hBtn = document.getElementById('helpButton');
	if(help.style.display == 'none') {
		help.style.display = 'block';
		hBtn.value = 'Hide Help';
	}
	else {
		help.style.display = 'none';
		hBtn.value = 'Show Help';
	}
}

function onLogin() {
	sm('loginBox',200,160);
	document.getElementById('uname').focus();
}

