function rand1(n)
{
	return(Math.floor(Math.random() * n + 1));
}
function showmsg()
{
	var random_msg1 = new Array();
	random_msg1[1] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td height=\"78\" valign=\"bottom\">\"The techniques in this book helped us become the undisputed national leader in our category. I\'ve read a lot of marketing books. This one has the clearest, most definitive methodology for building a brand and increasing sales.\" <br /><span class=\"para1\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8212; Marc Shuman, Founder and CEO, GarageTek</span>\</td></tr></table>";
	random_msg1[2] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td height=\"76\" valign=\"bottom\">\"James Connor had the courage to go and seek the ancient wisdom of Asia, the determination to master it with many years of study, and the vision to apply it to his hot New York ad agency. The proof is in the pudding; listen to him and succeed.\" <br /><span class=\"para1\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8212; Geshe Michael Roach, author of international <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;best-seller The Diamond Cutter</span>\</td></tr></table>";
	random_msg1[3] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td height=\"76\" valign=\"bottom\">\"A CEO, CFO, COO, and James Connor of The James Group: no organizational chart is complete without him.\" <br /><span class=\"para1\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8212; Julian Koski, Founder and CEO, TransparentValue</span>\</td></tr></table>";
	random_msg1[4] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td height=\"78\" valign=\"bottom\">\"This book and its principles are vital to the long-term success of any company.\" <br /><span class=\"para1\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8212; Rich Hobbie, President, WQIS, The Water Quality &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Insurance Syndicate</span>\</td></tr></table>";
	random_msg1[5] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td height=\"78\" valign=\"bottom\">\"The website optimization chapter helped make us #1 on Google for our key search term. No website should be built without studying these techniques.\" <br /><span class=\"para1\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8212; Chris Brown, Founder and CEO, Teed & Brown</span>\</td></tr></table>";
	random_msg1[6] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td height=\"78\" valign=\"bottom\">\"If David Carradine from Kung Fu was in Marketing, he'd be James Connor.\" <br /><span class=\"para1\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8212; John Rarrick, Founder and President, BullsEye Public &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Relations</span>\</td></tr></table>";
	var x = rand1(random_msg1.length-1);
	var h = document.getElementById("dycont");
	var quotetxt  = random_msg1[x];
	h.innerHTML = quotetxt;
}