// Online Specific Scripts

// CMSOU - Content Management System - Outline Update
function cmsou(ccode)
{
  // only when ctrl is pressed
  if (event.ctrlKey) {
    // Open a new window
    winHref = "http://www.onlc.com/scripts/outline_upd.asp?ccode=" + ccode;
    wNew = window.open(winHref, "_blank");
  }
}

// PMCMS - Poor Man's Content Management System
function pmcms(name)
{
  // only when ctrl is pressed
  if (event.ctrlKey) {
    // Get the current file
    var me = document.location.href;
    var ix  = me.lastIndexOf('/');
    if ( ix > -1 ) me = me.substring( ix + 1 );

    // Open a new window
    winHref = "pmcms.asp?srcFile=" + me + "&section=" + name;
    wNew = window.open(winHref, "_blank");
  }
}
