// JavaScript Document
// Add creation for new Layou 5/29/09
// HTML for banners that run on right side of internal pages

var global_ads = new Array();
global_ads[0] = '<img src="http://www.buyphillips.com/images/ads/sauce.jpg" width="170" height="500" /><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[1] ='<a href="http://www.biggestbook.com"><img src="http://www.buyphillips.com/images/ads/biggest-book.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[2] ='<a href="http://www.buyphillips.com/office-furniture/index.html"><img src="http://www.buyphillips.com/images/ads/hon1-ad.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[3] ='<a href="http://www.buyphillips.com/office-supplies/office-furniture/index.html"><img src="http://www.buyphillips.com/images/ads/instock-furniture.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[4]='<a href="http://www.buyphillips.com/office-supplies/office-furniture/index.html"><img src="http://www.buyphillips.com/images/ads/instock-furniture.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[5]='<a href="http://www.buyphillips.com/document-management/index.html"><img src="http://www.buyphillips.com/images/ads/doc-services.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[6]='<a href="http://www.buyphillips.com/office-supplies/divisional-info/delivery.html"><img src="http://www.buyphillips.com/images/ads/delivery.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[7]='<a href="http://www.buyphillips.com/office-furniture/index.html"><img src="http://www.buyphillips.com/images/ads/furniture.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';
global_ads[8]='<img src="http://www.buyphillips.com/images/ads/tea09.jpg" width="170" height="500" border="0" /></a><script src="http://static.getclicky.com/100682.js" type="text/javascript"></script><noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/100682-db12.gif" /></p></noscript>';

// Displays the ads
function DisplayAds() {
	var adLength = Number(global_ads.length);
	var a = Math.floor(Math.random()* adLength - 1) + 1;
	//alert (a)
	document.write (global_ads[a]);
}

