
function addEventHandlers(){
	oFrm = document.getElementById('quick_find');
	if ( oFrm && oFrm.keyword ){
		oFrm.keyword.onfocus = function(){
			if ( this.value == 'Search' ) {
				this.value = '';
			}else{
				this.select();
			}
		};
	}
}

window.onload = function(){
	addEventHandlers();
};
