<!-- hide script from old browsers

function getPickOfWeek(amazonCode, useTables)
{
  var asin = "0061715646";	//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 = "Who Turned Out the Lights? Your Guided Tour to the Energy Crisis";		//title of the pick of the week book
  var pickAuthor = "Scott Bittle and Jean Johnson";			//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 = " A complete rundown on the energy crisis. Readable, witty, and thought-provoking, it summarizes the current problems, and discusses, in-depth, the various options for supplying the nation and the world with sufficient energy. Bittle and Johnson do make an occasional nod to Al Gore. However, their ideas are thought provoking, and their facts are sound. A handy summary of the energy problems facing us 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 -->


