//<--
function random_150_photo(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="images/150.jpg" width="770" height="194" border="0" alt="">'
/*mycontent[2]='<img src="images/landing_150_02.jpg" width="770" height="194" border="0" alt="">'
mycontent[3]='<img src="images/landing_150_03.jpg" width="770" height="194" border="0" alt="">'
mycontent[4]='<img src="images/landing_150_04.jpg" width="770" height="194" border="0" alt="">'
mycontent[5]='<img src="images/landing_150_05.jpg" width="770" height="194" border="0" alt="">'
mycontent[6]='<img src="images/landing_150_06.jpg" width="770" height="194" border="0" alt="">'
mycontent[7]='<img src="images/landing_150_07.jpg" width="770" height="194" border="0" alt="">'
mycontent[8]='<img src="images/landing_150_08.jpg" width="770" height="194" border="0" alt="">'
mycontent[9]='<img src="images/landing_150_09.jpg" width="770" height="194" border="0" alt="">'*/

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_150_photo()
//-->