function validateSearchForm(f){
	if(f.qs.value == ""){
		alert("No input string supplied !");
		f.qs.focus();
		return false;
	}
	return true;
}
