<!-- Hide from old browsers
// Cache-busting and pageid value
var aamRnd = Math.round(Math.random() * 100000000); 

// Adserver URL
adserver = "http://cent.adbureau.net/bservers";

// Ad tag targeting values which will be appended to each ad request section in the bserver ad call
allAdTags = "/AAMALL/acc_random=" + aamRnd + "/pageid=" + aamRnd;

function displayAdvertisting()	{
	var adCount = 2;

	// DIV tag names in order
	var divNames = new Array('bannerAd','skyscraperAd');

	// AAMB variable names in order
	var aambTags = new Array('AAMB1','AAMB2');

	for (a = 0; a < adCount; a++)
		renderAd(divNames[a], aambTags[a]);
}

// Individual tags for each ad request - increment the adx variable name and the AAMBx parameter.
// TOP LEADERBOARD
ad1  ="/AAMB1/SITE=NDP/AREA=NDP_HOME/POSITION=NDP.TOPBANNER/AAMSZ=IAB_FULL_BANNER_468X60";
ad2  ="/AAMB2/SITE=NDP/AREA=NDP_HOME/POSITION=NDP.SKYSCRAPER/AAMSZ=IAB_SKYSCRAPER_120X600";

// bserver ad call insert the adx variables
document.write('<SCR' + 'IPT SRC="' + adserver + allAdTags + ad1 + ad2 + '?" type="text/JavaScript" language="JavaScript">');
document.write('</SCR' + 'IPT>');
//-->
