
function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<a href="birch_plywood.html"><img src="images/r01.gif" alt="" width="188" height="110" border="0"></a>'
mycontent[2]='<a href="birch_plywood.html"><img src="images/r02.gif" alt="" width="188" height="110" border="0"></a>'
mycontent[3]='<a href="birch_plywood.html"><img src="images/r03.gif" alt="" width="188" height="110" border="0"></a>'
mycontent[4]='<a href="dsp.html"><img src="images/r07.gif" alt="" width="188" height="110" border="0"></a>'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()

