// -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
//
// Keep in mind that these are invoked by HTML files in the 
// "lg" and "pf" sub-directories.

// set this to override the default location for the
// full PDF edition; should be a complete URL, starting
// with "http://" and ending with a PDF filename, though
// it can also be a relative URL (e.g. "../foo.pdf")
//
// set this to "" if there is no full PDF edition
//
PdfEdUrl= "../bwc2003.pdf";

function WebEdBaseUrl () {
  baseurl= window.location.href;
  ii= baseurl.length;
  while( 0< ii && baseurl.charAt(ii)!= '/' ) { ii-- };
  if( 0< ii && ii< baseurl.length ) {
    return baseurl.substring(0, ii+ 1);
  }
  return ""; // failure
}

function PdfFullReportLink() {
  if( PdfEdUrl && PdfEdUrl!= "" ) {
    if( PdfEdUrl== "DEFAULT" ) {
      document.write( "\074a href=\"../full_report.pdf\" target=\"_top\"\076\074img width=118 height=25 border=0 src=\"../icon_download_text.jpg\" alt=\"Download Full PDF\" \076\074/a\076" );
    }
    else {
      document.write( "\074a href=\"" + PdfEdUrl + "\" target=\"_top\"\076\074img width=118 height=25 border=0 src=\"../icon_download_text.jpg\" alt=\"Download Full PDF\" \076\074/a\076" );
    }
  }
}

