function breadcrumbs(sClass, sDelimiter)
  {
    if(!sDelimiter) sDelimiter = '»';	//Determin the delimiter
    var sURL = (location.pathname.indexOf('?') != -1) ? location.pathname.substring(0, location.pathname.indexOf('?')) : location.pathname;
        sURL = (location.pathname.charAt(0) == '/') ? location.pathname.substring(1) : location.pathname;
    var aURL = sURL.split('/');
    if(aURL)
    {
      var sOutput = '<font style="font-size: 8pt"><a href="/">CSULA</a> ' + sDelimiter + ' ';	//Display home as CSULA
      var sPath = '/';
      for(var i = 0; i < aURL.length - 1; i++)
      {
        sPath += aURL[i] + '/';
        sOutput += '<a href="' + sPath + '">';
        //if(sClass) sOutput += ' class="' + sClass +'"';
        if(aURL[i] == "its") sOutput += 'ITS</a>';	//Make ITS capital letters
        else
          sOutput += '' + aURL[i].charAt(0).toUpperCase() + aURL[i].substr(1) + '</a>';	//Make the first letter capital
        sOutput += ' ' + sDelimiter + ' ';
      }
      sOutput += '<b>' + document.title + '</b></font>';	//Add the title of the page at the end.
      document.write(sOutput);
    }
  }
// Title: Breadcrumb created by Masa Iketani
// Version: 1.2.0.
// Last Modify: 04-21-2005 (mm-dd-yyyy) by Masa
// Author: Masa Iketani <ricky_mi@hotmail.com>
// Copyright (c) 2003-2005 by Masa Iketani