// -----------------------
// FUNCTION: fValidateData
// DESCRIPTION: A function that validates the text field and assigns the action urls as per the the selected value 
// ARGUMENTS: None
// RETURN: true or false
// Added for artf624540
// -----------------------
function fValidateData(){
	if(document.getElementById("searchHeaderId").query.value == ""){
		alert("Please enter any keyword to search ");
		return false;
	}
	else {
		document.getElementById("queryKeywords").value= document.getElementById("searchHeaderId").query.value;
		document.forms["searchHeaderId"].action=aActionUrls[document.getElementById("searchOption").value];	
		return true;
	}
}



// -----------------------
// FUNCTION: fValidateDataFooter
// DESCRIPTION: A function that validates the text field and assigns the action urls as per the the selected value 
// ARGUMENTS: None
// RETURN: true or false
// Added for artf624540
// -----------------------
function fValidateDataFooter(){
	if(document.getElementById("searchFooterId").query.value == ""){
		alert("Please enter any keyword to search ");
		return false;
	}
	else {
		document.getElementById("queryKeywordsFooter").value= document.getElementById("searchFooterId").query.value;
		document.forms["searchFooterId"].action=aActionUrlsFooter[document.getElementById("searchOptionFooter").value];		
		return true;
	}
}

