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

