var image = new Array();
var index,result;
index = Math.random();
index = index*100;
index = Math.round(index);
index %= 7;
image[0] = '<IMG SRC ="images/random/1ACS.jpg" width=121 height=85>';
image[1] = '<IMG SRC ="images/random/2ACS.jpg" width=121 height=85>';
image[2] = '<IMG SRC ="images/random/3ACS.jpg" width=121 height=85>';
image[3] = '<IMG SRC ="images/random/4ACS.jpg" width=121 height=85>';
image[4] = '<IMG SRC ="images/random/5ACS.jpg" width=121 height=85>';
image[5] = '<IMG SRC ="images/random/6ACS.jpg" width=121 height=85>';
image[6] = '<IMG SRC ="images/random/7ACS.jpg" width=121 height=85>';
document.write(image[index]);