
   
function randInt(min,max)
{
     var div = (max - min) + 1
     var randNum = Math.random()
     for (var i = 0; i <= div - 1; i++)
     {
          if (randNum >= i / div && randNum < (i+1) / div)
          {return i + min}
     }
}
 
   
   
    var abc = randInt(1,5);
 
  
if (abc == 1) {  document.write('<font face ="Arial" size ="-1">Online Exclusive: <a href="http://deals.cellularbackdoor.com/verizon.htm">Get Web-Only Deals from <b>Verizon Wireless</b></a>.</font>');
  }
    
if (abc == 2) {  document.write('<font face ="Arial" size ="-1">Wireless Phone Prices Start at FREE: <a href="http://deals.cellularbackdoor.com/att.htm">Shop Online at <b>AT&T</b></a>.</font>');
  }

if (abc == 3) {  document.write('<font face ="Arial" size ="-1">Online Exclusive: <a href="http://deals.cellularbackdoor.com/verizon.htm">Web-Only Deals from <b>Verizon Wireless</b></a>.</font>');
  }
    
if (abc == 4) {  document.write('<font face ="Arial" size ="-1">Get All the Time You Need:  <a href="http://deals.cellularbackdoor.com/t-mobile.htm">Get Unlimited Talk & Text at <b>T-Mobile</b> only $59.99</a>!</font>');
  }

if (abc == 5) {  document.write('<font face ="Arial" size ="-1">Wireless for Less than $9 a Month:  <a href="http://deals.cellularbackdoor.com/tracfone.htm">Get Coast to Coast Coverage with <b>TracFone</b></a>!</font>');
  }        



//  End -->
     
