/* Browser sensing */
var isNew = 0;
var isNS4 = 0;
var isIE4 = 0;
var brow = ((navigator.appName) + (parseInt(navigator.appVersion)));
if (parseInt(navigator.appVersion) >= 5) {
isNew = 1}
else if (brow == "Netscape4") {
isNS4 = 1;}
else if (brow == "Microsoft Internet Explorer4") {
isIE4 = 1;}
/* cross-browser DOM */
if (isNS4) {
docObj = 'document.layers' + '[';
styleObj = ']'; }
else if (isIE4) {
docObj = 'document.all' + '[';
styleObj = ']' + '.style';
closeVar = ']';  }
else if (isNew) {
docObj = 'document.getElementById' + '(';
styleObj = ')' + '.style';
closeVar = ')';  }
function show() {
clearTimeout(Fuse);
for (var i=0; i<(show.arguments.length); i++) {
dom = eval(docObj + 'show.arguments[i]' + styleObj);
dom.visibility = 'visible';
}
}
function hide() {
for (var i=0; i<(hide.arguments.length); i++) {
dom = eval(docObj + 'hide.arguments[i]' + styleObj);
dom.visibility = 'hidden';
}
}
var Fuse;
function off(x) {
var str = "hide('"+x+"')";
Fuse = setTimeout(str,400);
}
function offAll() {
hide('');
rollOff('');
}
function chgColor(divID,theClass) {
	dom = eval(docObj + 'divID' + closeVar);
	dom.className = theClass;
}
function goTo(newLoc) {
window.location = newLoc;
}
/* adjusts subnav styles for IE5+ Mac and match IE5+ PC */
MacUser = (navigator.appVersion.indexOf("Mac")!=-1)?1:0;		
if (document.all&&document.getElementById) {/*IE5+*/
	if (MacUser) {/*Mac*/
	document.writeln('<style type="text/css">.nav1, .nav1b {height:auto}</style>');
	}
	else if (!MacUser) {/*Mac*/
	document.writeln('<style type="text/css">.nav1, .nav1b {height:24px}</style>');
	}
}

function openIt(url,w,h) {
	 if (screen.availWidth > w) {
	    l = Math.floor((screen.availWidth - w) / 2);
	 } else {
	    l = 0;
	 }
	 
	 if (screen.availHeight > h) {
	    t = Math.floor((screen.availHeight - h) / 2);
	 } else {
	    t = 0;
	 }
	  popUp = window.open(url, 'newsletter', 'width='+w+',height='+h+',top='+t+',left='+l+',toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0');
	  popUp.focus();
}

/* Thawte Sight Symbol */
function OpenCertDetails()
{
thewindow=window.open('https://www.thawte.com/cgi/server/certdetails.exe?code=USFLOR225','anew',config='height=480,width=520,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
}