/*http://www.webreference.com/js/scripts/breadcrumbs/*/
function breadcrumbs(){
  sURL = new String;
  bits = new Object;
  var x = 0;
  var stop = 0;
  /*added code*/
  TitleOverRide = new Object;
  var CustomTitleID = "title2";
  if (document.getElementById(CustomTitleID) != null){
    TitleOverRide = document.getElementById(CustomTitleID).attributes;
    var PageTitle = TitleOverRide.getNamedItem("content").value;
  }else{
	var PageTitle = document.title;
  }
  /*added code*/
  var output = "<a href=..//%22//%22>Home</a> » ";
  sURL = location.href;
  sURL = sURL.slice(8,sURL.length);
  chunkStart = sURL.indexOf("/");
  sURL = sURL.slice(chunkStart+1,sURL.length)
  while(!stop){
    chunkStart = sURL.indexOf("/");
    if (chunkStart != -1){
      bits[x] = sURL.slice(0,chunkStart);
      sURL = sURL.slice(chunkStart+1,sURL.length);
    }else{
      stop = 1;
    }
    x++;
  }
  for(var i in bits){
    output += "<a href=\"";
    for(y=1;y<x-i;y++){
      output += "../";
    }
    output += bits[i] + "/\">" + bits[i] + "</a> » ";
  }
/*  document.write(output + document.title);*/
  /*added code*/
    document.write(output + PageTitle);
  /*added code*/
}

function Bookmark()
{
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		window.external.AddFavorite("http://www.totalselfimprovement.com/","Self Improvement - Geoff Robertson");
	} else if (navigator.appName == "Netscape") {
		window.sidebar.addPanel("Self Improvement - Geoff Robertson","http://www.totalselfimprovement.com/","");
	} else {
		alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
	}
}
