<!--
function openFeature(URL,title,w,h)
{
var popupWin = window.open(URL, title, 'resizable=yes,scrollbars=yes,toolbar=0,menubar=no,screenX=10,screenY=10,width='+w+',height='+h);
window.top.name='opener';
popupWin.focus();
}

function breadCrumbs(base, delStr, defp, cStyle, nl) {
loc = window.location.toString();
subs = loc.substr(loc.indexOf(base) + base.length + 1).split("/");
document.write("<a href=\""+getLoc(subs.length-1)+defp+"\"class=\""+cStyle+"\">Monument PC</a> "+"<span class=\""+cStyle+"\">"+delStr+"</span>");
a = (loc.indexOf(defp) == -1) ? 1 : 2;
for (i = 0; i < (subs.length - a); i++) {
subs[i] = makeCaps(unescape(subs[i]));
document.write("<a href=\""+getLoc(subs.length-i-2)+defp+"\"class=\""+cStyle+"\">"+subs[i]+"</a> "+"<span class=\""+cStyle+"\">"+delStr+"</span> ");
}
if (nl == 1) {
document.write("<br>");
}
document.write("<span class=\"" + cStyle + "\">" + document.title + "</span>");
}

function makeCaps(a) {
 switch (a) {

  case "monumentpc": 
   aBack="Monument";
  break; 

  default:
    g=a.split(' ');
    for (l=0;l<g.length;l++)
      g[l]=g[l].toUpperCase().slice(0,1)+g[l].slice(1);
    aBack=g.join(" ");
    break;
 }
 return aBack;
}



function getLoc(c) {
var d = "";
if (c > 0) {
for (k = 0; k < c; k++) {
d = d + "../";
}
}
return d;
}
//-->