// JavaScript Document
function do_something()
{
document.write("Output something")
}

function display_rnd_quote()
{
	numquotes=8
	var0="Thanks for your over-the-top efforts. You made me look like a hero to my client."
	var1="AMZ Productions has always been capable, reliable and creative in their data services solutions for us."
	var2="You always know just how to put my ideas into words."
	var3="AMZ provided the lightning-fast turnaround needed in order to meet a project deadline.  They even took the initiative to propose alternate reporting formats that helped pinpoint the critical data more quickly. Thanks for the great service!"
	var4="Thanks for your over-the-top efforts. You made me look like a hero to my client."
	var5="AMZ Productions has always been capable, reliable and creative in their data services solutions for us."
	var6="AMZ provided the lightning-fast turnaround needed in order to meet a project deadline.  They even took the initiative to propose alternate reporting formats that helped pinpoint the critical data more quickly. Thanks for the great service!"
	var7="AMZ provided the lightning-fast turnaround needed in order to meet a project deadline.  They even took the initiative to propose alternate reporting formats that helped pinpoint the critical data more quickly. Thanks for the great service!"
	now=new Date()
	num=(now.getSeconds() )%numquotes
	if (num == 0)
	{quote=var0}
	if (num == 1)
	{quote=var1}
	if (num == 2)
	{quote=var2}
	if (num == 3)
	{quote=var3}
	if (num == 4)
	{quote=var4}
	if (num == 5)
	{quote=var5}
	if (num == 6)
	{quote=var6}
	if (num == 7)
	{quote=var7}
	document.write(quote)
}
function display_rnd_quote_auth()
{
	numquotes=8
	person0="Emmett Marshall II<br>Vice President<br>Mail Advertising Bureau, Inc."
	person1="Julie Volchko<br>Director of Media and Analysis<br>The Hacker Group"
	person2="Michele Belieu, President<br>Salon Too"
	person3="Heather Logan, CEO<br>Solutions Planning Group"
	person4="Emmett Marshall II<br>Vice President<br>Mail Advertising Bureau, Inc."
	person5="Julie Volchko<br>Director of Media and Analysis<br>The Hacker Group"
	person6="Heather Logan, CEO<br>Solutions Planning Group"
	person7="Heather Logan, CEO<br>Solutions Planning Group"
	now=new Date()
	num=(now.getSeconds() )%numquotes
	if (num == 0)
	{bywho=person0}
	if (num == 1)
	{bywho=person1}
	if (num == 2)
	{bywho=person2}
	if (num == 3)
	{bywho=person3}
	if (num == 4)
	{bywho=person4}
	if (num == 5)
	{bywho=person5}
	if (num == 6)
	{bywho=person6}
	if (num == 7)
	{bywho=person7}
	document.write(bywho)
}
