function quicklinks() 
{
    var theselect = document.getElementById("qlselect");
	var theurl = theselect.options[theselect.selectedIndex].value;
	if(theurl.indexOf("%") != -1) theurl = decode(theurl);
	window.location = theurl;
}

function decode(starturl)
{
	var endurl = "";
	for(var i = 0; i < starturl.length; i++)
	{
		if(starturl.charAt(i) != "%")
			endurl += starturl.charAt(i);
		else
			endurl += unescape(starturl.charAt(i++)+starturl.charAt(i++)+starturl.charAt(i));
	}
	return endurl;
}

function checksearch(form) {if(form.query.value == "" || form.query.value == "Enter search terms"){alert("Please enter some search terms");return false;}return true;}
