﻿function random_imglink(){
  var myimages=new Array()
  myimages[1]="cforpweb/images/photos_index/theme-1.jpg"
  myimages[2]="cforpweb/images/photos_index/theme-2.jpg"

  var imagelinks=new Array()


  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" border=0>')
}

  random_imglink()