//<--
function random_region_02(){
var mycontent2=new Array()
//specify random content below.
mycontent2[0]='<img src="/images/top_photos_2/region/1.jpg" alt="" width="90" height="97" border="0">'
mycontent2[1]='<img src="/images/top_photos_2/region/2.jpg" alt="" width="90" height="97" border="0">'
mycontent2[2]='<img src="/images/top_photos_2/region/3.jpg" alt="" width="90" height="97" border="0">'
mycontent2[3]='<img src="/images/top_photos_2/region/4.jpg" alt="" width="90" height="97" border="0">'
mycontent2[4]='<img src="/images/top_photos_2/region/5.jpg" alt="" width="90" height="97" border="0">'

var ry=Math.floor(Math.random()*(mycontent2.length-1))
document.write(mycontent2[ry])
}
random_region_02()
//-->

