<!--
function randomimage()
{
rimage = Math.floor(Math.random() * 10); //The picture of seven sheets is displayed at random
if (rimage == 0) { img = "image/topimg/topimg_01.jpg" }; 
if (rimage == 1) { img = "image/topimg/topimg_02.jpg" }; 
if (rimage == 2) { img = "image/topimg/topimg_03.jpg" }; 
if (rimage == 3) { img = "image/topimg/topimg_04.jpg" };
if (rimage == 4) { img = "image/topimg/topimg_05.jpg" };
if (rimage == 5) { img = "image/topimg/topimg_06.jpg" };
if (rimage == 6) { img = "image/topimg/topimg_07.jpg" };
if (rimage == 7) { img = "image/topimg/topimg_08.jpg" };
if (rimage == 8) { img = "image/topimg/topimg_09.jpg" };
if (rimage == 9) { img = "image/topimg/topimg_10.jpg" };
tag = "<IMG SRC='" + img + "' border=0 ALT='Connectors'>";
};
randomimage();
document.write(tag);
// end-->
