//***************************************************************//
//NAME: 		searchTXT									//
//PARAMETERS: 	text box object via this command				//
//USED: 		Header area of all pages.					//
//DESCRIPTION: 										//
//			Used to clear the Search Northwood... out 		//
//			of the search box on focus, and to retrun 		//
//			Search Northwood... on blur					//
//***************************************************************//	
function searchTxt(obj) {
	if(obj.value == 'Search Northwood...') {
		obj.value = '';
	} else {
		if(obj.value == '') {
			obj.value = 'Search Northwood...';
		}
	}
}
