/*
9-30-05  Dawn Dye Added onFocus event to search text box to remove test on click. Escaped the " with \ to show emptry value onFocus. 

*/

var inputBoxes = "";
				if (n){
					inputBoxSize = 24;//16
				}
				else if (ns6) {
					inputBoxSize = 28;//20
				}
				else { //ie
					inputBoxSize = 32;//25
				}				
				inputBoxes += "<input  autocomplete='off' type='text' value='Enter Keyword or Item #' size='"+inputBoxSize+"' name='wordsearch' onfocus='value=\"\"')'><br>";
				document.writeln(inputBoxes);
