					
		
		
// Script for determining the size of the search box according to browser and platform.
//first is PC netscape
//second is PC IE
//third is PC Netscape 7.x
//fourth is anything Mac but IE (Safari, Netscape 4.x and 7.x)
//fith is IE for Mac OS X
					
if (netscape7 != -1 && mac == -1 && macosx == -1) { 
	document.writeln('<INPUT class="small" TYPE="text" SIZE="15" NAME="qt">'); 
}
else if (netscape6 == -1 && ie == -1 && mac == -1 && macosx == -1) { 
	document.writeln('<INPUT class="small" TYPE="text" SIZE="15" NAME="qt">'); 
}						
else if (netscape6 == -1 && mac == -1 && macosx == -1) { 
	document.writeln('<INPUT class="small" TYPE="text" SIZE="15" NAME="qt">'); 
}
else if (macosx == -1) { 
	document.writeln('<INPUT class="small" TYPE="text" SIZE="14" NAME="qt">'); 
}
else { 
	document.writeln('<INPUT class="small" TYPE="text" SIZE="14" NAME="qt">'); 
}