// this function clears the custom search box when a user clicks on it
function clickclear(thisfield,defaulttext) { 
	if (thisfield.value == defaulttext) { 
		thisfield.value = "";
	}
}

 
function quicklink(form) {
	url = document.choosecollection.collection.value
	if (url != "stay") {
		location.href = url
	}
}

