<!--
function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]="/en/srsplus/images/srsplus_001.jpg"
mycontent[2]="/en/srsplus/images/srsplus_002.jpg"
mycontent[3]="/en/srsplus/images/srsplus_003.jpg"
mycontent[4]="/en/srsplus/images/srsplus_004.jpg"

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write('<img src="'+mycontent[ry]+'" width="199" height="299" border="0">')
}
random_content()
//-->
