var browserName = navigator.appName;
var browserRealnum = navigator.appVersion;
var browserParsed = browserRealnum.substring (0,4);
if (browserParsed == "3.0 ") browserParsed = 3.0;

bWorking = true;
NS4=(document.layers) ? true : false;
IE4=(document.all)?true:false;
ver4 = (NS4 || IE4) ? true : false;
if (NS4) {
	origWidth = innerWidth;
	origHeight = innerHeight;
}
function reDo()
{
	if(innerWidth != origWidth || innerHeight != origHeight)
		location.reload();
}
function layerClear()
{
	bWorking = false;
}
if (NS4) {onresize = reDo; onunload = layerClear}

function intrand()
{
var page=new Array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22)
var tesM=page[Math.floor(Math.random()*page.length)]
return tesM;
}

function colrand()
{
var page=new Array('white','cyan','blue','lightblue','yellow','navy','pink','moccasin','palegreen','mistyrose','lightcyan','LAVENDERBLUSH','HONEYDEW','azure','bisque')
var tesC=page[Math.floor(Math.random()*page.length)]
return tesC;
}

boxWid = 215;
boxHgt =50;
backCol = "slategray";
blendInt = 12;
blendDur = 5;
maxLoops = 1;
txtDec = "none";
txtAln = "center";
fntCol = "black";
fntSiz = "11px";
fntWgh = "bold";
fntSty = "normal";
fntFam = "arial,helvetica";
linHgt = "11px";
slideInc = 1;
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? true : false;

semi = ";";
sp = " ";

if (ver4) {
styleStr = "<STYLE TYPE='text/css'>"
 + "#elAll {"
 + "position:relative;"
 + "width:" + boxWid + semi
 + "height:" + boxHgt + semi
 + "background-color:" + backCol + semi
 + "layer-background-color:" + backCol + semi
 + "clip:rect(0 "+ boxWid + sp + boxHgt + " 0)" + semi
 + "}"
 + "#elP {"
 + "position:absolute;"
 + "height:" + boxHgt + semi
 + "background-color:" + backCol + semi
 + "layer-background-color:" + backCol + semi
 + "clip:rect(0 "+ boxWid + sp + boxHgt + " 0)" + semi
 + "}"
 + "#elGif {position:absolute}"
 + "#elNoDHTML {position:absolute; visibility:hidden}"
 + "A.newslink {"
 + "text-decoration:"+ txtDec + semi
 + "text-align:"+ txtAln + semi
 + "color:"+ fntCol + semi
 + "font-size:"+ fntSiz + semi
 + "font-style:"+ fntSty + semi
 + "font-family:"+ fntFam + semi
 + "}"
 + "</STYLE>";

document.write(styleStr);
}


finite = (maxLoops > 0) ? 1 : 0;
slideInt = (blendDur/(boxHgt/slideInc))*2000;
var arP = new Array();
var count=0;

	arP[0] = new Array();
	arP[0][0] = "";
	arP[0][1] = "";
	arP[0][2] = "<font size=2.1>This application can handle multiple years and Normal & Expedited Sales in the same taxsale year.</font>";
	count = 1;

	arP[1] = new Array();
	arP[1][0] = "";
	arP[1][1] = "";
	arP[1][2] = "<font size=2><u>New Feature Added:</u><br>Certified Mail Tracking System in the Owner Maintenance module.</font>";
	count = 2;

//if (ver4) window.onload = initIt;

function initIt(x){
var ran=x;
    if (NS4) {
        if (!document.elAll) return;
        elAll = document.elAll;
        elP = elAll.document.elP;
        elGif = elAll.document.elGif;
        imStr = "<IMG SRC='point.gif' HEIGHT="+boxHgt+" WIDTH="+boxWid+">"
        elGif.document.write(imStr);
        elGif.document.close();
    }
    else {
		if (IE4) {
	elP.style.filter=" ";
        elP.style.filter = "revealTrans(duration=blendDur,transition=parseInt(ran))";
		}
    }
    pcount = 0;
    if (finite) loopCount = 0;
    
    doIt();
    blendTimer = setInterval("doIt()",blendInt*400)
}
function doIt() {
	var newsStr = "";
        var pval=intrand();
    if (finite && loopCount==maxLoops) {
        clearInterval(blendTimer);
	initIt(pval);
	return;
    }
    if (NS4) elGif.top = 0;
	if (count > 0 && bWorking == true) {
	var colC=colrand();
    newsStr = "<font size=1 face='arial,helvetica' color="+colC+">" + arP[pcount][2] + "</font>";
	} 
    if (NS4 && bWorking == true) {
        with (elP.document) {
            write(newsStr);
            close();
        }
    }
    else {
		if (IE4) {
	elP.filters.revealTrans.Apply();
        elP.innerHTML = newsStr;
        elP.filters.revealTrans.Play();
	}
    }
    pcount++;
    if (pcount == arP.length) {
        pcount=0;
        if (finite) loopCount++;
    }
	
    if (NS4) slideIt();
}
function slideIt(){
    elGif.top += slideInc;
    if (elGif.top >= boxHgt) return;
    setTimeout("slideIt()",slideInt);
}

