<!-- hide script from old browsers

function getPickOfWeek(amazonCode, useTables)
{
  var asin = "0071760814";	//change the asin number for new pick
  var imgName = "aaa.jpg";	//name of image found in 'http://www.conservativebookstore.com/gifs/bookcovers/' directory
  var pickTitle = "Drowning in Oil, BP and the Reckless Pursuit of Profit";		//title of the pick of the week book
  var pickAuthor = "Loren C. Steffy";			//author of the pick of the week book

  // change the description lines for the pick of the week
  // repeating 2nd line for as many as needed
  var desc = " Traces the history of British Petroleum and its poor record on safety for the past decade. It relates the lapses within the organization that spawned more than one environmental disaster. From the explosion at the Texas City refinery to the destruction of the Macondo well in the Gulf, we learn the details of what happened and a logical explanation of why it happened. This fascinating book is a page turner that not only informs the reader, but gives vital background to news stories that continue to make headlines today.";

  // adds above dynamic information to static formating
  var pickOfWeek = "<!-- begin conservativebookstore.com pick of the week -->\n";

  // only use tables if requested
  var useTablesLower = useTables.toLowerCase();
  if ( useTablesLower == "true" )
  {  
    pickOfWeek += "<table border=1 cellpadding=7 width=\"468\"><tr><td>\n";
  }

  pickOfWeek += "<A HREF=\"http://www.amazon.com/exec/obidos/ASIN/";
  pickOfWeek = pickOfWeek + asin + "/" + amazonCode + "\"> \n";
  pickOfWeek += "<img src=\"http://www.conservativebookstore.com/gifs/bookcovers/";
  pickOfWeek = pickOfWeek + imgName + "\" ";
  pickOfWeek += "width=\"70\" height=\"105\" border=0 align=\"left\" hspace=\"10\"></A>\n";
  pickOfWeek += "<b>Book of the Week:</b>";
  pickOfWeek += "<A HREF=\"http://www.amazon.com/exec/obidos/ASIN/";
  pickOfWeek = pickOfWeek + asin + "/" + amazonCode + "\"> \n";
  pickOfWeek = pickOfWeek + pickTitle + "</A>, by " + pickAuthor + ".  ";
  pickOfWeek += desc;
  pickOfWeek += "<br><center>";
  pickOfWeek += "<A HREF=\"http://www.conservativebookstore.com\">www.conservativebookstore.com</A>\n";
  pickOfWeek += "</center>\n";

  if ( useTablesLower == "true" )
  {
    pickOfWeek += "</td></tr></table>\n";
  }

  pickOfWeek += "<!-- end conservativebookstore.com pick of the week -->\n";

  document.write(pickOfWeek);
  document.close();
}
// end hiding script from old browsers -->



