<!--
// Used for dW e-mail to a friend function
// Grab only the title from the entire document.title value
function dWSplitChar(ch, str) {
    var start = 0;
    var splits = new Object;
    var end;
    var i = 0;
    while(start < str.length) {
        end = start;
        while(end < str.length &&
              ch.indexOf(str.charAt(end)) < 0) { end++; }
        splits[i++] = str.substring(start,end);
        start = end + 1;
    }
    splits.length = i;
    return splits;
}

function getTitle(){
   var j=0;
   var titlestring="";
   var splitfields = dWSplitChar(':', document.title); // Here's the variable to change to however many subdivisions you have.
   for (j=3;j<splitfields.length;j++) // Also change j = the # chosen below (if appropriate)
 {
       if (j>3) {
           titlestring+=": ";
       }

       titlestring+=splitfields[j];
   }
   return titlestring;
}

var justTitle = getTitle();
// -->
