	
	
	function submit_quick_search ( obj_this, keywords_text ) {
		// Check to see if anything is specified
		var something_modified = false;
		var temp_obj;
		temp_obj = document.getElementById ( "quicksearch_languages_options" );
		if ( temp_obj.value != 0 ) {
			something_modified = true;
		}
		temp_obj = document.getElementById ( "quicksearch_sectors_options" );
		if ( temp_obj.value != 0 ) {
			something_modified = true;
		}
		temp_obj = document.getElementById ( "quicksearch_locations_options" );
		if ( temp_obj.value != 0 ) {
			something_modified = true;
		}
		temp_obj = document.getElementById ( "quicksearch_keyword_text" );
		if ( temp_obj.value != "" && temp_obj.value != keywords_text ) {
			something_modified = true;
		}
		if ( false === something_modified ) {
			alert ( "Please enter a specific search" );
			return ( false );
		} else {
			if ( temp_obj.value == keywords_text ) {
				temp_obj.value = "";
			}
			return ( true );
		}
	}
	
	
	//function lost_focus_search_box ( obj_this ) {
	function clear_search_box ( obj_this, keywords_text ) {
		if ( obj_this.value == "" ) {
			obj_this.value = keywords_text;
		} else if ( obj_this.value == keywords_text ) {
			obj_this.value = "";
		}
		return true;
	}
	
	
	function restore_last_quick_search_option ( param_type, param_value ) {
		var temp_obj = document.getElementById ( "quicksearch_" + param_type + "_options" );
		if ( true === isObject ( temp_obj ) ) {
			//
		}
		return false;
	}
	
	
	
	