<!-----

// ***** Begin Customized SiteIndex Parameters

var MenuHeader = new String("+ Under Construction +");		// Popup Menu Title
var RooT = new String("http://www.ivliberty.com/");	// Root URL
var HomePageLocation = new String(RooT+"index.html");		// Homepage filename
var HomePageDescription=new String("Joe's Personal Home Page");	// Homepage Name-Description
var MaxMenuItems = 50;

// ***** End Customized SiteIndex Parameters

var save = "";
var MySelf = new String(document.URL);
var eMailSubjectLine = new String("Inspired by:[ "+document.URL+" ]");
var FileDescription = "";
var FileLocation = "";
var Prefix = "";
var meNow=0;

function MakeIndex(Prefix, FileLocation, FileDescription){
 if (MenuItemCount <= MaxMenuItems) {
  if ((save.indexOf(FileLocation) < 0) && (MySelf != (Prefix + FileLocation) )){
   save += FileLocation;
   this.loc = Prefix + FileLocation;
   this.des = FileDescription;
   MenuItemCount += 1;
  }
 } else {
  alert("SiteIndex exceeded " + MaxMenuItems + " items at " + FileDescription + "[ " + FileLocation + " ]");
 }
}

var NoLink = new String("javascript:void('0')");
var ReturnToLocation = new String(document.referrer);
if (ReturnToLocation.indexOf("mailbox:") >-1) ReturnToLocation="";

if (!(ReturnToLocation=="")){
	var beginFile = RooT.length;
	if (ReturnToLocation.indexOf(RooT) < 0 ) beginFile = 0;
	var ReturnToDescription = "Return to: " + ReturnToLocation.substring(beginFile,ReturnToLocation.length);
}
var MenuItem = new Array(MaxMenuItems);
var FileLocation = "";
var FileDescription = "";
var MenuItemCount = 0;

MenuItem[MenuItemCount] = new MakeIndex("",NoLink,MenuHeader);
MenuItem[MenuItemCount] = new MakeIndex("",HomePageLocation,HomePageDescription);
if (ReturnToLocation != "") 	MenuItem[MenuItemCount] = new MakeIndex("",ReturnToLocation,ReturnToDescription);
//	***** Begin Custom Menu Items

MenuItem[MenuItemCount] = new MakeIndex(RooT,"services.html", "Alchemy Services");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"hot-topic2.html", "Houston Texas Hot Topic");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"bio.html", "A brief Biography");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"cars/cars.html", "My Car Page");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"cars/pax.html", "2007 Solo2 PAXilator");
MenuItem[MenuItemCount] = new MakeIndex("","http://www.IVLIBERTY.COM/cars/pax.html", "2005 Solo2 PAXilator");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"personal/personal.html", "Joe's Family");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"homebrew.html", "Randy Stoat & Dead Turtle");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"polls/index.html", "Opinion Polls");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/us_doi.html", "Declaration Of Independence");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/usconstitution.html", "U. S. Constitution");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/politics.html", "Joe's Politics Page");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/druglaws.html", "Real Criminals");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/qod.html", "Political Quote Of The Day");
MenuItem[MenuItemCount] = new MakeIndex("","http://memory.loc.gov/const/fed/fedpapers.html", "Read the Federalist Papers");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/govtspeech.html", "Political Speech");
MenuItem[MenuItemCount] = new MakeIndex("","http://www.self-gov.org/quiz.html", "Politically Speaking, What Am I?");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/why_the_bor.html", "Impeachment Answers");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/hamilton_bor.html", "Bill Of Rights - Why?");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"politics/charlton_heston_speech.html","Charlton Heston @ Harvard");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"fun/fun.html", "Fun Stuff");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"philosophy/philosophy.html", "Joe's Philosophy Links");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"coolmarks.html", "My Links Page");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"unsolicited_mail.html", "Notice To SPAMMERS!");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"reference/reference.html", "Reference Sources");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"reference/searchfromhell.html", "Search From Hell");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"reference/arin.html", "~~~ ISP Finder ~~~");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"reference/mw.html", "Dictionary/Thesaurus");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"java/", "Java Junk");
MenuItem[MenuItemCount] = new MakeIndex("","http://www.aerialviewpoint.com", "Aerial Viewpoint");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"chris/", "Yokoshima Imports");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"monitor_consent.html", "Consent To Be Monitored");
MenuItem[MenuItemCount] = new MakeIndex(RooT,"weather/khou.html", "KHOU Houston Weather Report");
MenuItem[MenuItemCount] = new MakeIndex("","mailto:Joe%20Rogerson%20<joe.rogerson@ivliberty.com>?subject="+eMailSubjectLine, "Comment On This Page?");

// ***** End Custom Menu Items

document.write('<center><form name="siteindex">\n<select size="1" name="siteselect" onchange="location=this[this.selectedIndex].value">\n');

for (var i=0; i < MenuItemCount; i++)
{
	document.write('<OPTION VALUE="'+MenuItem[i].loc+'"');
	if (i==0)document.write(" SELECTED");
	document.write('>'+MenuItem[i].des+'</OPTION>\n');
}

document.write('</SELECT></form></center>\n');
save="";

//----->


