<!-- 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(
"</center><a href='/sub/molly/stories/ruffgame.htm'><img src='../pix/molly/line.jpg'> Ruff Game</a><br><a href='/sub/molly/stories/cookiebake.htm'><img src='../pix/molly/line.jpg'> Cookie Bake!</a><br><a href='/sub/molly/stories/cookie.htm'><img src='../pix/molly/line.jpg'> Cookie Theory</a><br><a href='/sub/molly/stories/knows.htm'><img src='../pix/molly/line.jpg'> Molly Knows</a><br><a href='/sub/molly/stories/slimeballs.htm'><img src='../pix/molly/line.jpg'> Slime Balls</a><br><a href='/sub/molly/stories/lap.htm'><img src='../pix/molly/line.jpg'> That Used To Be My Lap</a><br><a href='/sub/molly/stories/daughter.htm'><img src='../pix/molly/line.jpg'> My Daughter, My Dog...</a><br><a href='/sub/molly/stories/spiceoflife.htm'><img src='../pix/molly/line.jpg'> The Spice of Life</a><br><a href='/sub/molly/stories/whalebelly.htm'><img src='../pix/molly/line.jpg'> Belly of a Whale</a><br><a href='/sub/molly/stories/trailer.htm'><img src='../pix/molly/line.jpg'> Bicycle Built for Two (or Three or Four)</a>",
"</center><img src='../pix/molly/line.jpg'> Humane Society Pet Care <a href='http://www.hsus.org/programs/companion/pet_care/pet_care.html'> Special Features</a><br><img src='../pix/molly/line.jpg'> Creating a <a href='http://www.sfspca.org/resume.html'>Pet Resume</a> for when you're moving<br><img src='../pix/molly/line.jpg'><a href='http://www.rentwithpets.org'>Renting with Pets</a><br><img src='../pix/molly/line.jpg'> Get the place, <a href='http://www13.allapartments.com/apartments/fyp/reading_room/legal/pets_RT_1.jhtml'>keep your pet</a>",
"</center><img src='../pix/molly/line.jpg'> Cookie, cookie, cookie starts with 'C.'  Check out <a href='http://www.gorgedog.com' target='_blank'>GorgeDog</a> and see about getting some of those yummy bonbons for your dog!<br /><img src='../pix/molly/line.jpg'> See what your pet's <a href='http://ivillage.com/pets/petnames/'>name</a> means..."
);

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="0"; bord="1 bordercolor=black";}
else {pad="1"; bord="0";}
desc = 	  "<table cellspacing=0 cellpadding="+pad+" border="+bord+" bgcolor=000000 align=left><tr><td>\n"
	+"<table cellspacing=0 cellpadding=1 border=0 width=180 align=left><tr><td bgcolor=ffffff><center><font size=-1>\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+3;
	document.object1.top=y-5;
	}
else if(navigator.family =="ie4"){
	object1.innerHTML=desc;
	object1.style.pixelLeft=x+3;
	object1.style.pixelTop=y-5;
	}
else if(navigator.family =="gecko"){
	document.getElementById("object1").innerHTML=desc;
	document.getElementById("object1").style.left=x+3;
	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 -->
