<!--copyright wombatcreek.com 2000
window.status="Wombat Creek"

//////////////////////////////////////////
//error message suppression
function stopError() {
  return true;
}

window.onerror = stopError;

//////////////////////////////////////
//copyright wombatcreek.com 2000 with help from Tom Negrino and Dori Smith
// this provides the "prev" and "next" links via JavaScript using the URL numbers and the top left info and button
var thisURL = window.document.location.href;
var page_number = thisURL.substring(thisURL.length-7,thisURL.length-4);
var previous_page_number = ((page_number*1)-1);
var next_page_number = ((page_number*1)+1);
var minpage_number = 101;
var maxpage_number = 200;
var section_url = thisURL.substring(thisURL.length-10,thisURL.length-8);

if((section_url*1) < 50){
 var section_number = ("Number " + section_url*1);}
else
section_number = "Home";


///////////////////////////
function PrevNextLink()
{if (thisURL.substring(thisURL.length-4,thisURL.length-0) != ".php"){
	history.back()}
else
	{var prev_next_link = "";

if (page_number == minpage_number)
		{prev_next_link = "<br><br><INPUT class=hide onclick='location.href=\"200.php\"' type=button value=\"<<&nbsp;&nbsp;PREVIOUS\"><INPUT class=next onclick='location.href=\"" + next_page_number + ".php\"' type=button value=\"NEXT&nbsp;&nbsp;>>\">";
		}
else
if(page_number == maxpage_number)
		{prev_next_link = "<br><br><INPUT class=prev onclick='location.href=\"" + previous_page_number + ".php\"' type=button value=\"<<&nbsp;&nbsp;PREVIOUS\">";
		}
else
		{prev_next_link = "<br><br><INPUT class=prev onclick='location.href=\"" + previous_page_number + ".php\"' type=button value=\"<<&nbsp;&nbsp;PREVIOUS\"><INPUT class=next onclick='location.href=\"" + next_page_number + ".php\"' type=button value=\"NEXT&nbsp;&nbsp;>>\">";
		}
return prev_next_link;
	}
}


///////////////////////////////////////////
//hide & show joke choose menu
var ie4 = (document.all) ? true : false;
var ns4 = (document.layers) ? true : false;
var ns6 = (document.getElementById && !document.all) ? true : false;
function hidelayer(lay) {
if (ie4) {document.all[lay].style.visibility = "hidden";}
if (ns4) {document.layers[lay].visibility = "hide";}
if (ns6) {document.getElementById([lay]).style.display = "none";}
}
function showlayer(lay) {
if (ie4) {document.all[lay].style.visibility = "visible";}
if (ns4) {document.layers[lay].visibility = "show";}
if (ns6) {document.getElementById([lay]).style.visibility = "visible";}
}


//-->
