//Modified by Coffeecup Software
//produces a randomly generated graphic to use as ad or cool effect
function RandomNumber()
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  //var num=Math.floor(Math.random()*101);
  return num;
}
function RandomGraphics()
{
  var x = RandomNumber();

  

if (x > .75)
{document.write("<iframe name='bsu' width='426' height='345' src='bsuclub5.html' border='0' frameborder='0' scrolling='no' align='center' hspace='0' vspace='0'></iframe>"); return;
}


if (x > .50)
{document.write("<iframe name='bsu' width='426' height='345' src='bsuclub4.html' border='0' frameborder='0' scrolling='no' align='center' hspace='0' vspace='0'></iframe>"); return;
}  


if (x > .25)
{document.write("<iframe name='bsu' width='426' height='345' src='bsuclub3.html' border='0' frameborder='0' scrolling='no' align='center' hspace='0' vspace='0'></iframe>"); return;
}




if (x > .12)
{document.write("<iframe name='bsu' width='426' height='345' src='bsuclub2.html' border='0' frameborder='0' scrolling='no' align='center' hspace='0' vspace='0'></iframe>"); return;
}

if (x > 0)
{document.write("<iframe name='bsu' width='426' height='345' src='bsuclub1.html' border='0' frameborder='0' scrolling='no' align='center' hspace='0' vspace='0'></iframe>"); return;
}

}
RandomGraphics();
//End Script
