
<!-- Begin
//   ##############  SIMPLE  BROWSER SNIFFER
if (document.layers) {navigator.family = "nn4"}
if (document.all) {navigator.family = "ie4"}
if (window.navigator.userAgent.toLowerCase().match("gecko")) {navigator.family = "gecko"}

//  #########  popup text 
descarray = new Array(
"Get a turnkey web hosting solution specifically for appraisers.<li> No set up fees, or up front fees of any kind!<li> We have been hosting appraiser sites since 1998!<li> You don't have to do anything, we do it all for you!",
"Why pay $200-$500 for an appraisal web site? <li>Choice of 20 different FREE designs<li>All have online appraisal order forms! <li>We can put your business online <li>NO UP FRONT COSTS!",
"Don't get burned by new clients! <li>Check them out first at DeadbeatListings.com!<li>Searchable database, easy to use<li>Check them out BEFORE you take that order!",
"List your appraisal business FREE!<li>High traffic directory is responsible<br>for hundreds of appraiser contacts per day!<li>Get a TOP 5 listing for a small fee!",
"Email for the Professional Real Estate Appraiser<li>Send and receive large appraisal files <li>Industrial strength email!",
"Want to project a professional<br>internet presence?<br> GET YOUR OWN DOMAIN!<br> Use it for a web<br>site and email!"
);

overdiv="0";
//  #########  CREATES POP UP BOXES 
function popLayer(a){
if(!descarray[a]){descarray[a]="<font color=red>This popup (#"+a+") isn't setup correctly - needs description</font>";}
if (navigator.family == "gecko") {pad="1"; bord="0";}
else {pad="2"; bord="1";}
desc = 	  "<table cellspacing=0 cellpadding="+pad+" border="+bord+"  bgcolor=000000><tr><td>\n"
	+"<table cellspacing=0 bgcolor=FF4901 cellpadding=3 border=0 width=100%><tr><td align=center><font face=\"arial\" size=3 color=white>\n"
	+descarray[a]
	+"\n</td></tr></table>\n"
	+"</td></tr></table>";
if(navigator.family =="nn4") {
	document.object1.document.write(desc);
	document.object1.document.close();
	document.object1.left=x+15;
	document.object1.top=y-5;
	}
else if(navigator.family =="ie4"){
	object1.innerHTML=desc;
	object1.style.pixelLeft=x+15;
	object1.style.pixelTop=y-5;
	}
else if(navigator.family =="gecko"){
	document.getElementById("object1").innerHTML=desc;
	document.getElementById("object1").style.left=x+15;
	document.getElementById("object1").style.top=y-5;
	}
}
function hideLayer(){
if (overdiv == "0") {
	if(navigator.family =="nn4") {eval(document.object1.top="-500");}
	else if(navigator.family =="ie4"){object1.innerHTML="";}
	else if(navigator.family =="gecko") {document.getElementById("object1").style.top="-500";}
	}
}

//  ########  TRACKS MOUSE POSITION FOR POPUP PLACEMENT
var isNav = (navigator.appName.indexOf("Netscape") !=-1);
function handlerMM(e){
x = (isNav) ? e.pageX : event.clientX + document.body.scrollLeft;
y = (isNav) ? e.pageY : event.clientY + document.body.scrollTop;
}
if (isNav){document.captureEvents(Event.MOUSEMOVE);}
document.onmousemove = handlerMM;
//  End -->

