<!-- 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 = 16;

	// DIV tag names in order
	var divNames = new Array('div1', 'div2', 'div3', 'div4', 'div5', 'div6', 'div7', 'div8', 'div9', 'div10', 'div11', 'div12', 'div13', 'div14', 'div15', 'div16');

	// AAMB variable names in order
	var aambTags = new Array('AAMB1', 'AAMB2', 'AAMB3', 'AAMB4', 'AAMB5', 'AAMB6', 'AAMB7', 'AAMB8',  'AAMB9', 'AAMB10', 'AAMB11', 'AAMB12', 'AAMB13', 'AAMB14', 'AAMB15', 'AAMB16');

	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=MM_MS/AREA=MS.ARTICLE/POSITION=MS.TOPLEADERBOARD/AAMSZ=IAB_LEADERBOARD_728x90";
// BOTTOM LEADERBOARD
ad2  ="/AAMB2/SITE=MM_MS/AREA=MS.ARTICLE/POSITION=MS.BOTTOMLEADERBOARD/AAMSZ=IAB_LEADERBOARD_728x90";
// INTERNAL PROMO
ad3  ="/AAMB3/SITE=MM_MS/AREA=MS.ARTICLE/POSITION=ADSTRIP";
//PREMIUM BUTTON
ad4  ="/AAMB4/SITE=MM_MS/AREA=MS.ROS/POSITION=MS.PREMIUMBUTTON/AAMSZ=MSPREMIUMBUTTON";
// SKYSCRAPER 1
ad5  ="/AAMB5/SITE=MM_MS/AREA=MS.ROS/POSITION=MS.SKY1/AAMSZ=IAB_SKYSCRAPER_120x600";
// BUTTONS
ad6  ="/AAMB6/";
ad7  ="/AAMB7/";
ad8  ="/AAMB8/";
ad9  ="/AAMB9/";
// BUTTONS
ad10 ="/AAMB10/SITE=MM_MS/AREA=MS.ROS/POSITION=button1";
ad11 ="/AAMB11/SITE=MM_MS/AREA=MS.ROS/POSITION=button2";
ad12 ="/AAMB12/SITE=MM_MS/AREA=MS.ROS/POSITION=button3";
ad13 ="/AAMB13/SITE=MM_MS/AREA=MS.ROS/POSITION=button4";
// SKYSCRAPER 2
ad14 ="/AAMB14/SITE=MM_MS/AREA=MS.ROS/POSITION=MS.SKY2/AAMSZ=IAB_SKYSCRAPER_120x600";
ad15 ="/AAMB15/";
// MPU ADVERTISING
ad16  ="/AAMB16/SITE=MM_MS/AREA=MS.ARTICLE/POSITION=MS.MPUNEWS/AAMSZ=IAB_MPU_300x250";


// bserver ad call insert the adx variables
document.write('<SCR' + 'IPT SRC="' + adserver + allAdTags + ad1 + ad2 + ad3 + ad4 + ad5 + ad6 + ad7 + ad8 + ad9 + ad10 + ad11 + ad12 + ad13 + ad14 + ad15 + ad16 + '?" type="text/JavaScript" language="JavaScript">');
document.write('</SCR' + 'IPT>');
//-->