function addBulletinzItem(givenLabel, givenHREF, isTop) {
var bulletinzItem = new Object();
bulletinzItem.label = givenLabel;
bulletinzItem.href = givenHREF;
bulletinzItem.top = isTop;
return bulletinzItem;
}
function getBulletinz() {
var bulletinzArray = new Array();
bulletinzArray.push(addBulletinzItem("A Message from Ganz: On Account and Online Item Sales.","bulletinz_sales.html", true));
bulletinzArray.push(addBulletinzItem("Questions about Pet of the Month? Read This.","bulletinz_potm.html", false));
bulletinzArray.push(addBulletinzItem("I cannot view the full Webkinz screen","bulletinz_fullscreen.html", false));
bulletinzArray.push(addBulletinzItem("Problem with a pack of trading cards? Read this!","bulletinz_trading_cards_policy.html", true));
bulletinzArray.push(addBulletinzItem("Important Message from Webkinz World","bulletinz_cheating.html", false));
bulletinzArray.push(addBulletinzItem("Can't see the Login or New Member buttons?","bulletinz_login_issue.html", false));
bulletinzArray.push(addBulletinzItem("Important Announcement:
Account Security, Responsibility and Termination","bulletinz_security.html", false));
bulletinzArray.push(addBulletinzItem("Got a plush toy without a W? Read this!","bulletinz_magic_w.html", false));
bulletinzArray.push(addBulletinzItem("Concerned about a rumor? Read this!","bulletinz_rumor.html", false));
return bulletinzArray;
}
function listBulletinz(listAll) {
var bulletinz = "";
var bulletinzArray = getBulletinz();
for (var i=0; i' + bulletinzArray[i].label + '';
} else if (listAll) {
bulletinz += '';
}
}
document.write(bulletinz);
}