// For the Header Search form
function goto_url(form) {
	if (form.search_text.value == "" || form.search_text.value=="Enter keywords") {
		alert("Please enter some text and then press Search");
		return false;
	}

	//var url = form.search_select[form.search_select.selectedIndex].value + escape(form.search_text.value) + '&escape=1';
	var url = "http://www.psy.uq.edu.au/search/index.html?q=" + escape(form.search_text.value);

	// Uncomment this lines if you want the current window to change
	document.location = url;

	// Uncomment this line if you want the search in a new window
	//search_window = window.open(url);

	return false;
}

