// ***** INITIALIZE PAGE FOR CURRENT CLIENT BROWSER ****
//NETSCAPE 4.x
if (is_nav4) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/netscape4x.css" />');
}
//NETSCAPE 6.2.3
if (is_nav6) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/netscape623.css" />');
}
//NETSCAPE 6.2.3 (Mac)
if (is_mac && is_nav6) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/netscape623-mac.css" />');
}
//SAFARI 1.x
if (is_safari) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/safari1x.css" />');
}
//MSIE 5.x (not 5.5)
if (is_ie5 && !is_ie5_5) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/msie5x.css" />');
}
//MSIE 5.5
if (is_ie5_5) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/msie55.css" />');
}
//OPERA 7.x
if (is_opera7up) {
	document.write('<link rel="stylesheet" type="text/css" href="_css/opera7x.css" />');
}

// ***** /INITIALIZE PAGE FOR CURRENT CLIENT BROWSER ****

// ***** FOCUS SEARCH FIELD ONLOAD ****
function focusSearchField() {
	if (document.getElementById('freetext')) {
		document.getElementById('freetext').focus();
	}
}
// ***** /FOCUS SEARCH FIELD ONLOAD ****