// -- Routine to make sure I can open book from any page, and switch vendor
function openMyBook() {

  // -- BN.com
  //eval("window.open('http://service.bfast.com/bfast/click?bfmid=2181&sourceid=38884028&bfpid=0764508482&bfmtype=book','MyBook','Scrollbars,Height=" + (screen.height-150).toString() + ",width=" + (screen.width-150).toString() + "')");

  // -- Amazon.com
  eval("window.open('http://www.amazon.com/exec/obidos/ASIN/0764508482/activecertcom-20','MyBook','Scrollbars,Height=" + (screen.height-150).toString() + ",width=" + (screen.width-150).toString() + "')");

  return false;
}

