function pointTo(strDest)
{ 
  // this function relies on some SUIT API functions included in the main document
  /* This script used to set up context sensitive links. */

  var strSystem;

    // Strings for URL handling. Detect the system, build
    // the ITS URL string that doesn't change.

  strSystem = suit.systemName("demo");

    // these are URLs to HERUG secure documents in *develoopment* or *production* sites


 /*                                      
  *  THE FOLLOWING SWITCH STATEMENT IS    
  *       A L P H A B E T I Z E D        
  *          BY CASE ARGUMENT
  */

  switch(strDest)
  {
    case "1042is":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/1042-s_issues.doc";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/1042-s_issues.doc";
      break;
    case "1042up":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/1042-s_update.doc";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/1042-s_update.doc";
      break;
    case "eform":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/e-forms_herug_v3.ppt";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/e-forms_herug_v3.ppt";
      break;
    case "fecdoc":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/final_effort_certification.doc";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/final_effort_certification.doc";
      break;
    case "fecpdf":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/final_effort_certification.pdf";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/final_effort_certification.pdf";
      break;
    case "fefr":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/final_electronic_forms_req.doc";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/final_electronic_forms_req.doc";
      break;
    case "hei0323":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/higher_ed_issues_2003_v023.xls";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/higher_ed_issues_2003_v023.xls";
      break;
    case "heixls":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/higher_ed_issues.xls";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/higher_ed_issues.xls";
      break;
    case "reqnewhire":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/req_newhire.pdf";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/req_newhire.pdf";
      break;
    case "tt2doc":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/tenure_tracking2.doc";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/tenure_tracking2.doc";
      break;
    case "ttpdf":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/tenure_tracking.pdf";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/tenure_tracking.pdf";
      break;
    case "ttzprpa":
      if (strSystem == "demo") document.location = "http://informit-dev.mit.edu/erp_manuals/herug/zpr_pa_tenure_information.doc";
      else document.location = "http://informit.mit.edu/erp_manuals/herug/zpr_pa_tenure_information.doc";
      break;
   } // end case statement
 } // end function definition
