function GetImage() {

var piccy = [
"41",
"38",
"02",
"06",
"17",
"18",
"09",
"43",
"48",
"47"
];

// generate a random number between 0 and 100

today = new Date();
num=Math.round(10*Math.abs(Math.sin(today.getTime())));
if (num>9) num=1;

// write a quote from the array quote [] above using the random number to choose one
document.write('<a href="#" ONCLICK="imageWindow(',piccy[num],')">');
document.write('<img src="images/tmb0',piccy[num],'.jpg" border="0"></a>');
document.write('<br>');document.write('<br>');

}

