// <script type="text/javascript" src="/scripts/rand.js"></script>

var mess = new Array(
'<img class=border src=/images/random/random1.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random2.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random3.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random4.jpg alt=Picture width=300 height=190>',
'<img class=border src=/images/random/random5.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random6.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random7.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random8.jpg alt=Picture width=300 height=225>',
'<img class=border src=/images/random/random9.jpg alt=Picture width=300 height=225>'
);
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);

