<!-- hide script from old browsers

function getPickOfWeek(amazonCode, useTables)
{
  var asin = "9780037640";	//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 = "Reason, Justice, and Common Sense: A Collection of Essays from the Sierra Sage";		//title of the pick of the week book
  var pickAuthor = "Leonard A. Semas";			//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 = " This is a collection of essays from the editor of Sierra Sage, a well-known, conservative monthly magazine. It applies hard headed logic with some lightness of tone, to the major political and cultural issues that face the United States in the modern world, including repeal of the income tax and dealing with the problem of illegal immigration. In this book Mr. Semas brings sanity and intelligence back into the discourse on public issues. The book contains a forward written by Barry Goldwater Jr. ";

  // 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 -->


