//Bikini.com 120 Banners Menu functions

//Generate random number
function getRandomNum(lbound, ubound) {
return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
}

//Write Banner to HTML page
function writeBanner(section){

  var rannum1 = getRandomNum(67,72); //2nd number one higher then total number of banners in rotation
  var bantext1 = '<!--Bikini.com Banners v.1.01-->'
  + '<center><img SRC="http://www.bikini.com/images/sub/sub_dingbats_01.gif" ALT WIDTH="90" HEIGHT="28" HSPACE="0" VSPACE="0"  BORDER="0" ALIGN="CENTER" VALIGN="TOP"><a href="http://party.bikini.com/ban_rotate/ban1_'
  + section
  + '.cgi?act=view&id='
  + rannum1
  + '" TARGET="_blank"><img '
  + 'src="http://party.bikini.com/ban_rotate/ban1_'
  + section
  + '.cgi?act=show&id='
  + rannum1
  + '" border=0 alt="Bikini.com Banners" WIDTH="120" HEIGHT="240"></a></center>'

  + '<!--End Bikini.com Banners-->';
  document.write(bantext1);
}
