function Random()

{

var ran = Math.random();

var num = 3;

if (num*ran <  1) 


{

document.write("<font color=\"#31478b\">Michelle Orr will present  \"Planning for Sustainable Estuarine Restoration with Sea Level Rise \"  at the  FWS Workshop on the Coastal Ecosystems of California, Oregon, and Washington \"Climate Change, Natural Resources and Coastal Management\", January 29 to 30, 2009 </font>");return; 

}

if (num*ran <  2) 

{

document.write("<font color=\"#31478b\">Dave Revell will present \"An Initial Assessment of the Impact of Sea Level Rise to the California Coast\"  at the FWS Workshop on the Coastal Ecosystems of California, Oregon, and Washington \"Climate Change, Natural Resources and Coastal Management\", January 29 to 30, 2009 </font>");return; 

}

if (num*ran <  3) 

{

document.write("<font color=\"#31478b\">Bob Battalio will co-present \"An Initial Assessment of the Impact of Sea Level Rise to the California Coast\"  at the FWS Workshop on the Coastal Ecosystems of California, Oregon, and Washington \"Climate Change, Natural Resources and Coastal Management\", January 29 to 30, 2009 </font>");return;

}

}

Random();

