var versionNum = parseInt(navigator.appVersion);
if(versionNum < 2 && navigator.appName == 'Netscape') {
} else {

  var pool = new MediaPool();

  // pool.addImage("path to image", "url", "alt text");
  // pool.addFlash("path to movie", width, height, loop_flag, "alternate content - image with link or imagemap");
  // pool.addHTMLFragment("any arbitrary HTML you want");
  // BE SURE TO ESCAPE DOUBLE QUOTES IN TEXT BY PRECEDING
  // THE QUOTE CHARACTERS WITH A BACKSLASH.
  // EXAMPLE: "This an example of \"alternate content\" that contains double quotes."

	
	pool.addHTMLFragment(
	"<div class=subhead>Latest News</div><a href=\"http://www.polycom.com/company/news_room/press_releases/2009/20091022_2.html\"  target=\"_blank\"><img src=\"http://www.nortel.com/images/165x100/165x100_advanced_certification_achieved.jpg\" alt=\"Advanced Certification Achieved\" width=\"165\" height=\"100\"></a><br />Advanced Certification from Polycom strengthens Telepresence Solution.<br /><a href=\"http://www.polycom.com/company/news_room/press_releases/2009/20091022_2.html\" class=\"arrow\" target=\"_blank\">Learn More*</a>"
    );

	pool.addHTMLFragment(
	"<div class=subhead>Slideshow</div><a href=\"http://www.nortel.com/multimedia/slideshows/higher_ed/index.html?NT_promo_T_ID=bug_slideshow_higher_ed_09_20_09\" ><img src=\"http://www.nortel.com/images/165x100/165x100_enhance_your_institutions_reputation.jpg\" alt=\"Enhance your institutions reputation\" width=\"165\" height=\"100\"></a><br />Enhance the reputation of your higher education institution and while saving money.<br /><a href=\"http://www.nortel.com/multimedia/slideshows/higher_ed/index.html?NT_promo_T_ID=bug_slideshow_higher_ed_09_20_09\" class=\"arrow\">Watch the slideshow</a>"
    );

	pool.addHTMLFragment(
	"<div class=subhead>White Paper</div><a href=\"http://www.nortel.com/services/collateral/nn123621.pdf\" ><img src=\"http://www.nortel.com/images/165x100/165x100_implement_email.jpg\" alt=\"CIO Magazine Researches Telepresence Use\" width=\"165\" height=\"100\"></a><br />Contact centers are opening virtual doors by implementing email communications and web chat as a medium for support. Learn the best practices and pitfalls to avoid.<br /><a href=\"http://www.nortel.com/services/collateral/nn123621.pdf\" class=\"arrow\">Learn more</a>"
    );
	
	pool.addHTMLFragment(
	"<div class=subhead>Latest News</div><a href=\"http://www2.nortel.com/go/news_detail.jsp?cat_id=-8055&oid=100248889&locale=en-US\" ><img src=\"http://www.nortel.com/images/165x100/services/165x100_telepresence_verizon.jpg\" alt=\"Verizon Business Selects Nortel Telepresence\" width=\"165\" height=\"100\"></a><br />Verizon Business selects Nortel to help deliver a new managed telepresence offering.<br /><a href=\"http://www2.nortel.com/go/news_detail.jsp?cat_id=-8055&oid=100248889&locale=en-US\" class=\"arrow\">Learn more</a>"
    );
	
  var randomObject = null;
  randomObject = pool.getRandomObject();
  if(randomObject != null) {
      document.writeln( randomObject.toHtml() );
  }

}



