
// the variables below are for the breadcrumbs
// the 9 in the slice command will strip the first 9 chars from the title

    var theTitle = document.title
    var theUrl = document.URL
    var theName = theTitle.slice(9)

// --- END breadcrumb variables


// --- popThis is for new browser windows

function popThis(url,title,w,h) {
window.open(url,title, "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizeable=yes,copyhistory=no,width="+w+",height="+h);
} 

// --- END popThis




