
function insertBook() {
	var isbn = new Array();
	isbn[0] = "0446692786";
	isbn[1] = "1928662048";
	isbn[2] = "0471509485";
	isbn[3] = "0471654655";
	isbn[4] = "0471456292";
	isbn[5] = "0471662623";
	isbn[6] = "1885167601";
	isbn[7] = "188516730x";
	isbn[8] = "0142000280";
	isbn[9] = "0446691437";
	isbn[10] = "0743227905";
	isbn[11] = "159184021x";
	isbn[12] = "1557046204";
	isbn[13] = "1557045380";
	isbn[14] = "1557046638";
	isbn[15] = "1557045909";
	isbn[16] = "1557046417";
	isbn[17] = "1558500170";
	isbn[18] = "1932531106";
	isbn[19] = "1932156895";
	isbn[20] = "1932156852";
	isbn[21] = "0143034545";
	isbn[22] = "0470009799";
	isbn[23] = "0976996294";
	isbn[24] = "1591795176";
	isbn[25] = "0967450667";
	isbn[26] = "1419593331";
	isbn[27] = "0972649727";
	isbn[28] = "1576751244";
	isbn[29] = "0471783935";

	var title = new Array();
	title[0] = "Brag! The Art of Tooting Your Own Horn Without Blowing It";
	title[1] = "The 7 Most Powerful Selling Secrets: Soar Your Way to Success with Integrity, Passion, and Joy";
	title[2] = "Marketing Your Services: A Step-By-Step Guide for Small Businesses and Professionals";
	title[3] = "Shut Up, Stop Whining, and Get a Life: A Kick-Butt Approach to a Better Life";
	title[4] = "The Sales Bible: The Ultimate Sales Resource";
	title[5] = "The Patterson Principles of Selling";
	title[6] = "Little Red Book of Selling: 12.5 Principles of Sales Greatness: How to Make Sales Forever";
	title[7] = "Customer Satisfaction Is Worthless, Customer Loyalty Is Priceless";
	title[8] = "Getting Things Done: The Art of Stress-Free Productivity";
	title[9] = "The War of Art: Break Through the Blocks and Win Your Inner Creative Battles";
	title[10] = "The Big Red Fez: How to Make Any Web Site Better";
	title[11] = "Purple Cow: Transform Your Business by Being Remarkable";
	title[12] = "Dragon Spirit: How to Self-Market Your Dream (Zentrepreneur)";
	title[13] = "Success at Life: A Zentrepreneur’s Guide How to Catch and Live Your Dream";
	title[14] = "Tiger Heart, Tiger Mind: How to Empower Your Dream (Zentrepreneur)";
	title[15] = "Wowisms: Words of Wisdom for Dreamers and Doers";
	title[16] = "The Zentrepreneur’s Idea Log and Workbook (Zentrepreneur)";
	title[17] = "Ultimate Marketing Plan (91 Edition)";
	title[18] = "No B.S. Business Success";
	title[19] = "No B.S. Sales Success";
	title[20] = "No B.S. Time Management for Entrepreneurs";
	title[21] = "Ready for Anything: 52 Productivity Principles for Work and Life";
	title[22] = "Hypnotic Wrtiting";
	title[23] = "When Your Small Business Is YOU Marketing Handbook";
	title[24] = "Conscious Business: How to Build Through Values";
	title[25] = "The Brand Called You: The Ultimate Brand-<wbr>Building and Business Development Handbook";
	title[26] = "Word of Mouth Marketing: How Smart Companies Get People Talking";
	title[27] = "How to Be That Guy";
	title[28] = "Attracting Perfect Customers: The Power of Strategic Synchronicity";
	title[29] = "Book Yourself Solid: The Fastest, Easiest, and Most Reliable System...";


	var author = new Array(2);
	author[0] = "Peggy Klaus";
	author[1] = "John Livesay";
	author[2] = "Anthony O. Putnam";
	author[3] = "Larry Winget";
	author[4] = "Jeffrey H. Gitomer";
	author[5] = "Jeffrey H. Gitomer";
	author[6] = "Jeffrey H. Gitomer";
	author[7] = "Jeffrey H. Gitomer";
	author[8] = "David Allen";
	author[9] = "Steven Pressfield";
	author[10] = "Seth Godin";
	author[11] = "Seth Godin";
	author[12] = "Ron Rubin";
	author[13] = "Ron Rubin";
	author[14] = "Ron Rubin";
	author[15] = "Ron Rubin";
	author[16] = "Ron Rubin";
	author[17] = "Daniel S. Kennedy";
	author[18] = "Dan Kennedy";
	author[19] = "Dan Kennedy";
	author[20] = "Dan Kennedy";
	author[21] = "David Allen";
	author[22] = "Joe Vitale";
	author[23] = "Jeanna Pool";
	author[24] = "Fred Kofman";
	author[25] = "Montoya & Vandehey";
	author[26] = "Andy Sernovitz";
	author[27] = "Scott Ginsberg";
	author[28] = "Stacey Hall & Jan Brogniez";
	author[29] = "Michael Port";


	var rand = Math.floor(Math.random() * isbn.length);

	document.write("<center><a style='border:0' title='" + title[rand] + "' target='_blank' href='http://www.powells.com/cgi-bin/partner?partner_id=29265&cgi=product&isbn=" + isbn[rand] + "'><img style='border:1px solid #00a000' height='179' src='/pics/books/" + isbn[rand] + ".jpg'></a></center>");
	document.write("<p style='margin-left:15px;margin-right:15px'><b>" + title[rand] + "</b>");
	document.write("<p>by " + author[rand]);
	document.write("<p><a target='_blank' href='http://www.powells.com/cgi-bin/partner?partner_id=29265&cgi=product&isbn=" + isbn[rand] + "'>Buy from Powell’s</a>");
	document.write("<br><a target='_blank' href='http://www.amazon.com/exec/obidos/ASIN/" + isbn[rand] + "/martymarshcom-20'>Buy from Amazon</a></p>");

}

insertBook();







