
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
	var result = Math.ceil(rnd()*number);
	if (!result)result++;
        return result
};
var ad_cnta = 3;
var ada = rand(ad_cnta);
var linka;
var adBannera;
var widtha
var heighta
if (ada==1) {
linka="http://www.nytimes.com/2009/02/10/nyregion/10chancellor.html";
adBannera="USU Coalition Chair, Nancy L. Zimpher, accepts position as SUNY Chancellor.";
}
if (ada==2) {
linka="../downloads/part4/LivingCitiesStrive_National_ 042909.pdf";
adBannera="Four USU Member Institutions receive $100,000 each from Living Cities to replicate STRIVE model.";
}
if (ada==3) {
linka="http://www.aplu.org/NetCommunity/Page.aspx?pid=1277";
adBannera="Professor Ronald M. Berkman of Florida International University receives A-P-L-U's 2009 Michael P. Malone International Leadership Award.";
}
document.write('<p><a href="' + linka + '" target="_blank">');
document.write(adBannera + '</a></p>');

