
<!--

var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;


var ar = new Array();


var ar = new Array();




// May/June 2008
//ar[0] = "<STRONG>Latest headlines: </STRONG> <SPAN CLASS = BANNER><a href = '0308_absel.htm'>Using Virtual Worlds for Business and Learning</a></SPAN>";
//ar[1] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_publicWorks.htm'>Real Life Engineering with Second Life Tools</a>";
//ar[2] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_earthDay.htm'>Earth Day in Second Life</a>";
//ar[3] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_gigsCorner.htm'>Toward a Server-Enforced Security Model</a>";
//ar[4] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_contentTheft.htm'>Naked Avatars Raise Awareness of Intellectual Property</a>";
//ar[5] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_chez.htm'>An Interview with Chez Nabob</a>";
//ar[6] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_rtv.htm'>Public Broadcaster RTV Slovenia Launches Second Life Island</a>";
//ar[7] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_qatanI.htm'>Klingons Opt for Vulcan Peace After Scrape with Romulans</a>";
//ar[8] = "<STRONG>Latest headlines: </STRONG> <a href = 'freedom.htm'>Freedom of Expression World Map</a>";
//ar[9] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_letter.htm'>To Our Readers</a>";
//ar[10] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_traffic.htm'>Traffic Report</a>";



// March/April 2008
ar[0] = "<STRONG>Latest headlines: </STRONG> <SPAN CLASS = BANNER><a href = '0308_absel.htm'>Using Virtual Worlds for Business and Learning</a></SPAN>";
ar[1] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_publicWorks.htm'>Real Life Engineering with Second Life Tools</a>";
ar[2] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_earthDay.htm'>Earth Day in Second Life</a>";
ar[3] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_gigsCorner.htm'>Toward a Server-Enforced Security Model</a>";
ar[4] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_contentTheft.htm'>Naked Avatars Raise Awareness of Intellectual Property</a>";
ar[5] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_chez.htm'>An Interview with Chez Nabob</a>";
ar[6] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_rtv.htm'>Public Broadcaster RTV Slovenia Launches Second Life Island</a>";
ar[7] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_qatanI.htm'>Klingons Opt for Vulcan Peace After Scrape with Romulans</a>";
ar[8] = "<STRONG>Latest headlines: </STRONG> <a href = 'freedom.htm'>Freedom of Expression World Map</a>";
ar[9] = "<STRONG>Latest headlines: </STRONG> <a href = '0308_traffic.htm'>Traffic Report</a>";








// Feb 2008
//ar[0] = "<STRONG>Latest headlines: </STRONG> <SPAN CLASS = BANNER><a href = '0208_diegolandClass011.htm'>Diegoland Hosts Continuing Education Students</a></SPAN>";
//ar[1] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_crash003.htm'>PANIC! Second Life bank closures raise many questions</a>";
//ar[2] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_foolsGold004.htm'>Fool&#8217;s Gold: ATMs promise &#8220;More than Expected&#8221; in a lose-lose proposition</a>";
//ar[3] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_metanomics001.htm'>Metanomics from Cornell: What the Wall Street Journal Missed</a>";
//ar[4] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_beyers002.htm'>An Interview with Beyers Sellers</a>";
//ar[5] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_qatanI010.htm'>Klingons Invade Second Life: Message from QatanI Damdin</a>";
//ar[6] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_gigsCorner008.htm'>Gigs&#8217; Corner: Get Ready for LSL Mono</a>";
//ar[7] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_journey009.htm'>Journey in Second Life: ROCK ON!</a>";
//ar[8] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_newseum005.htm'>The Newseum: The world&#8217;s largest newsstand comes to Second Life</a>";
//ar[9] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_gillick006.htm'>Lost eyeballs, hyper-local super-niche content, and the digital future</a>";
//ar[10] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_letter012.htm'>To Our Readers</a>";
//ar[11] = "<STRONG>Latest headlines: </STRONG> <a href = '0208_traffic013.htm'>Traffic Report</a>";
//ar[12] = "<STRONG>Latest headlines: </STRONG> <a href = 'freedom.htm'>Freedom of Expression World Map</a>";



var num = 0;

function start() {
  setInterval("update()", 2000);
}

function update() {
  display("banner", ar[num]);
  num++;
  if (num == ar.length) num = 0;
}

function display(id, str) {
  if (NS4) {
    with (document[id].document) {
      open();
      write(str);
      close();
    }
  } else {
    document.all[id].innerHTML = str;
  }
}

// -->
