
var bannerDetails = new Array(
'<a href="http://www.mb01.com/lnk.asp?o=3677&c=46088&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=79&o=3677&i=46088.dat" width=720 height=300 border=0><br />Free Best Buy $1000 Gift Card</a><br />Get all the electronics you want from Best Buy.<br />',
'<a href="http://www.mb01.com/lnk.asp?o=3279&c=42821&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=1753&o=3279&i=42821.dat" width=720 height=300 border=0><br />Free Amazon Kindle</a><br />Test out an Amazon Kindle and keep it for free.<br />',
'<a href="http://www.mb01.com/lnk.asp?o=3465&c=44276&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=1753&o=3465&i=44276.dat" width=720 height=300 border=0><br />Free Apple iPad</a><br />Get the NEW Apple iPad, with wifi & 3G.  Includes a $100 iTunes Gift Card, FREE.<br />',
'<a href="http://www.mb01.com/lnk.asp?o=3209&c=42192&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=79&o=3209&i=42192.dat" width=720 height=300 border=0><br />Free Call of Duty: Black Ops Bundle</a><br />Return to war on Call of Duty(R): Black Ops(TM). Offer includes a game console.<br />',
'<a href="http://www.mb01.com/lnk.asp?o=2921&c=39535&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=79&o=2921&i=39535.dat" width=720 height=300 border=0><br />PS3 Slim bundle<br />Free God of War PS3 Slim Bundle</a><br />Hail Kratos. Get a PS3 Slim and all 3 God of Wars. <br />',
'<a href="http://www.mb01.com/lnk.asp?o=3735&c=46559&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=1880&o=3735&i=46559.dat" width=600 height=323 border=0><br />Free Playstation Move</a><br />Don\'t let the Wii users have all the fun.<br />',
'<a href="http://www.mb01.com/lnk.asp?o=3729&c=46543&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=79&o=3729&i=46543.dat" width=720 height=300 border=0><br />Free Samsung Galaxy Tab</a><br />Get the Samsung tablet computer that is taking the world by storm.<br />',
'<a href="http://www.mb01.com/lnk.asp?o=3271&c=42738&a=2043" target="_blank"><IMG SRC="http://www.mb01.com/getimage.asp?m=79&o=3271&i=42738.dat" width=720 height=300 border=0><br />Free XBOX 360 Elite with Kinect</a><br />Control the game with your own body movement through Microsoft Kinect.<br />'
)

// get total number of ads
var numberAds=bannerDetails.length;

// get random number
var randNum = randomNumber();

document.write(bannerDetails[randNum]);
document.write("<br /><p><small>Clicking this advertisement will open a new window.</small></p>");

function randomNumber() {
  return Math.round(Math.random()*numberAds-0.5);
}

