// Copyright 2007 ShopSite, Inc. All Rights Reserved.

// Random Order list of National Partners
function sort_partners() {
  var mypartners = new Array();
  // Add the partners to the array
  mypartners[0] = "verio";
  mypartners[1] = "bizland";
  mypartners[2] = "lexiconn";
  mypartners[3] = "yourhost";
  mypartners[4] = "pair";
//  mypartners[5] = "broadspire";

  var i = 0;
  while ( i < mypartners.length) {
    var rand = Math.round(Math.random()*mypartners.length);
    if (mypartners[rand]!="done") {
      print_partners(mypartners[rand]);
      mypartners[rand]="done";
      i ++;
    }
  }  
}

function print_partners(thispartner) {
  if (thispartner == 'verio') {
    document.write('<a href="http://www.verio.com/web-hosting/ecommerce/" target="_blank">');
    document.write('Verio');
    document.write('</a><br>');
  }
  if (thispartner == 'bizland') {
    document.write('<a href="http://www.bizland.com/bizland/ecommerce-services.bml" target="_blank">');
    document.write('BizLand');
    document.write('</a><br>');
  }
  if (thispartner == 'lexiconn') {
    document.write('<a href="http://www.lexiconn.com/ecommerce/shopsite/index.html" target="_blank">');
    document.write('lexiconn');
    document.write('</a><br>');
  }
  if (thispartner == 'yourhost') {
    document.write('<a href="http://www.yourhost.com/shopsite/index.html" target="_blank">');
    document.write('YourHost');
    document.write('</a><br>');
  }
  if (thispartner == 'pair') {
    document.write('<a href="http://www.pair.com/services/e-commerce/shopping_carts/" target="_blank">');
    document.write('pair&nbsp;Networks');
    document.write('</a><br>');
  }
/*  if (thispartner == 'broadspire') {
    document.write('<a href="http://www.broadspire.com/smallbusiness/ecommercehosting" target="_blank">');
    document.write('BroadSpire');
    document.write('</a><br>');
  } */
}


