var navName = navigator.appName;
var navVer  = parseInt(navigator.appVersion);
var ns  = (navName=="Netscape" && navVer<5);
var ie  = (navName=="Microsoft Internet Explorer");
var ns6 = (navName=="Netscape" && navVer>=5);

if (ie) document.writeln("<object id=usc width=0 height=0 data='/bbs/usc.html' type='text/x-scriptlet'></object>");

var usc = document.getElementById("usc")

var cbftimer=null;
function cbf(v) {
	try {
		if (usc.readyState!=4) {
			cbftimer = window.setTimeout("cbf('" + v + "')", 500);
		} else {
			if (cbftimer!=null) window.clearTimeout(cbftimer);
			eval(v);
		}
	} catch(e) {}
}
