

var ImageArr1 = new Array(
 
"http://www.rsaconference.com/images/sidebar/bookshop.jpg",
"http://www.rsaconference.com/images/sidebar/credit.jpg",
"http://www.rsaconference.com/images/sidebar/expo2.jpg");

var HeadlineArr1 = new Array(
 
"POPULAR RSA CONFERENCE BOOK SHOP RETURNS",
"EARN CPE CREDITS FOR ATTENDING RSA CONFERENCE EUROPE",
"NEED HELP TO GAIN YOUR MANAGER'S APPROVAL TO ATTEND?");

var PromoArr1 = new Array(
 
"Check out the latest information security titles at RSA Conference Book Shop, in association with Wiley. Located in Conference Central, be sure to stop by for a discount off all books. And don't miss out on book signings with top IT security experts!",
"Keep your certifications up to date! Members of (ISC)2 and ISACA can earn CPE credits for attending sessions at RSA Conference Europe 2009.",
"We know that travel and training budgets are tight even in the best of times. The benefits of attending RSA Conference Europe 2009 - to you and your organization - cannot be ignored. We've created a email/letter template you can use to convince your manager to approve your trip!");

var LinkTextArr1 = new Array(
 
"Learn more",
"Learn more",
"Get tips now");

var LinkArr1 = new Array(
 
"http://www.rsaconference.com/2009/europe/conference-central/book-shop.htm",
"https://365.rsaconference.com/blogs/rsa-conference-blog/2009/09/08/cpe-credits-for-rsa-conference-europe-2009",
"https://365.rsaconference.com/docs/DOC-2095");


var rand = Math.floor(Math.random()*ImageArr1.length);
 
document.write("<img src='" + ImageArr1[rand] + "'> ");
document.write("<h2>" + HeadlineArr1[rand] + "</h2> ");
document.write("<p>" + PromoArr1[rand] + "</p> ");
if(LinkArr1[rand]!="#"){
	document.write("<p><b><a href='" + LinkArr1[rand] + "'>"+ LinkTextArr1[rand] +" &#x00bb;</a></b></p> ");
} 