// Search box validation used for both the search box and the main search page
function searchpagevalidate(ref) {
	if (ref.keyword.value != '')
		{
		return true;
		}
	else
		{
		alert('Please provide a\nkeyword to search for.');
		return false;
		}		
}
// Auto drop list function
// Used for the form in utitlties/display/dsp_pageheader.cfm
function formHandler(form){
 var URL = document.quicklinkform.ArticleID.options[document.quicklinkform.ArticleID.selectedIndex].value;
 window.parent.location.href = URL;
}
