<!-- hide script from old browsers

function getPickOfWeek(amazonCode, useTables)
{
  var asin = "0882704265";	//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 = "Uncivil Society: Government's War Against God and the Plight of the Christian Citizen";		//title of the pick of the week book
  var pickAuthor = "Adam Mersereau";			//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 = " takes head-on questions about the constitution with regard to church and state. He proposes that a government that attempts to take the place of the religious sphere in the lives of citizens, must perforce become all-powerful, and subsequently create its own morality at the price of individual freedom. The author fully supports his thesis with logic and references. Well-written and well thought out, Uncivil Society is an intriguing work, well worth a read.";

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


