/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="/images/ads/pro-stores.jpg"
  myimages[2]="/images/ads/hosting-data-center.jpg"
  myimages[3]="/images/ads/ocmetro.jpg"
  
  //myimages[1]="/images/ads/pro-stores.gif"
  //myimages[3]="/images/ads/services.gif"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="/products_services/e_commerce/ProStores.html"
  imagelinks[2]="/products_services/data_center/index.html"
  imagelinks[3] = "http://www.ocmetro.com/t-CoverStory_Best_Companies_PostExtras_060508.aspx"
  //imagelinks[2]="/products_services/e_commerce/ProStores.html"
  //imagelinks[3]="/products_services/data_center/"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}