
   
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,21);
 
if (abc == 1) {  document.write('Make your cellular phone number look more like a \"Business\" number.');
}
  
if (abc == 2) {  document.write('Not getting the answers you want from Customer Service?  Politely hang up & call back.');
  }
 
if (abc == 3) {  document.write('There are at least 10 ways to get out of your cellular contract with little or no penalty.');
  }
 
if (abc == 4) {  document.write('Went over your Wireless Minutes?  Just ask for a few free minutes, or change plans retroactively.');
  }

if (abc == 5) {  document.write('Hate your carrier but love their network?  Deal with someone else: An \"MVNO\" uses the same network.');
 }

if (abc == 6) {  document.write('Make your phone work better. Phone settings like \"ROAM\" or \"PCS\" may make the difference.');
 }

if (abc == 7) {  document.write('You can get a better or cheaper cellular rate plan if you\'re 65 or over.');
 }

if (abc == 8) {  document.write('NEVER Text & Drive! It\'s more dangerous than driving drunk.');
 }

if (abc == 9) {  document.write('It\'s <i>not</i> always necessary to change plans when upgrading to a new phone.');
 }

if (abc == 10) {  document.write('Don\'t carry 2 phones. \"Conditonal Call Forwarding\" can direct your calls to 1 phone when you want.');
 }

if (abc == 11) {  document.write('Get FREE (or Really Cheap) International wireless Long Distance charges.');
 }

if (abc == 12) {  document.write('2-Year contracts: How to deal with them or get out of them.');
 }

if (abc == 13) {  document.write('Do you have a 2nd land line into your home?  Why not make it wireless?  Even for the kids.');
 }        

if (abc == 14) {  document.write('Always do the math on your wireless plan. Family plans aren\'t always cheaper than individual plans.');
 }

if (abc == 15) {  document.write('Left your phone at home? All is not lost. You can still get your calls.');
 }

if (abc == 16) {  document.write('Program important and emergency numbers into your phone <i>before</i> you need them!');
 }

if (abc == 17) {  document.write('Text Messaging often works where you can\'t make voice calls.');
 }

if (abc == 18) {  document.write('Leave a Voice Mail message without ringing their phone. We have the access numbers.');
 }

if (abc == 19) {  document.write('Most carriers have unadvertised \"Secret\" plans.  They could mean big savings for you!');
 }

if (abc == 20) {  document.write('Who do you work for? Many companies can get employees substantial discounts on wireless.');
 }

if (abc == 21) {  document.write('Get a wireless phone number in the Area Code you want! There\'s no reason to look like an outsider or a newbie.');
 }

//  End -->
     

