	function breadcrumbs(){
    sURL = new String;
    bits = new Object;
    var x = 0;
    var stop = 0;
    var output = "<A HREF=\"/index.htm\" target=Bottom_Frame>Home</A> > "; 
    sURL = parent.Bottom_Frame.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] + "/index.htm\" target=Bottom_Frame>" + bits[i] + "</A> > ";
    } 
	if (document.layers) {
		var oLayer = (parent.Top_Frame)? eval(parent.Top_Frame.document.breadDiv.document) : document.layers['breadDiv'].document;
		oLayer.open();
		oLayer.write("<font face=\"Arial\">" + "<font size=\"1\">"+output + document.title);
		oLayer.close();
	}	
	else {if (document.getElementById) {parent.Top_Frame.document.getElementById('breadDiv').innerHTML = output + document.title;}
	else {if (document.all) {parent.Top_Frame.document.all['breadDiv'].innerHTML = output + document.title}
}}}  
setTimeout ("breadcrumbs()",100);
