/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 9;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Tip #51";
body="Award your customer with a high-value Movie card as a test-drive premium";
link="../products/movie.php";
}

if (quotes==1) {
title="Tip #16";
body="Reward seminar attendees with Dining Cards as part of promotional goody bags!";
link="../products/dining.php";
}

if (quotes==2) {
title="Tips #63";
body="Keep employees motivated! Reward them a Hotel Card if they exceed their monthly sales goals.";
link="../products/hotel.php";
}

if (quotes==3) {
title="Tip #43";
body="Giveaway Latin America Phone Cards during consumer product demos in key business areas.";
link="../products/la-phonecard.php";
}

if (quotes==4) {
title="Tip #37";
body="Hand-out Music Cards for new account openers, a great way to reach students new to banking and finances.";
link="../products/music.php";
}

if (quotes==5) {
title="Tip #23";
body="Increase trade show traffic while giving them something to remember you by with a Ring Tone Card.";
link="../products/ringtone.php";
}

if (quotes==6) {
title="Tip #16";
body="Reward customers with a Phone Card when they sign-up for new services or switch insurance providers.";
link="../products/phonecards.php";
}

if (quotes==7) {
title="Tip #13";
body="Say &#8220;thank you.&#8221; Present your preferred customers with a valuable gift. Use a music card to &#8220up-sell&#8221; clients and increase profits.";
link="../products/music.php";
}

if (quotes==8) {
title="Tip #31";
body="Love your logo? Show it off, add value to your product, and influence a purchase with customizable promotional movie cards. They are a fantastic in-pack or on-pack showcase for your brand.";
link="../products/movie.php";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'<br>');
document.write('<p><a href="'+ link +'">Click here for more ideas!</a> </p>'); 
document.write('</div>');
