<!--
    // JavaScript to interpolate random images into a page.
    var ic = 17;     // Number of alternative images
    var profile = new Array(ic);  // Array to hold filenames
        
profile[0] = "http://www.wojtaszek.ca/images/small1.jpg";
profile[1] = "http://www.wojtaszek.ca/images/small2.jpg";
profile[2] = "http://www.wojtaszek.ca/images/small3.jpg";
profile[3] = "http://www.wojtaszek.ca/images/small4.jpg";
profile[4] = "http://www.wojtaszek.ca/images/small5.jpg";
profile[5] = "http://www.wojtaszek.ca/images/small6.jpg";
profile[6] = "http://www.wojtaszek.ca/images/small7.jpg";
profile[7] = "http://www.wojtaszek.ca/images/small8.jpg";
profile[8] = "http://www.wojtaszek.ca/images/small9.jpg";
profile[9] = "http://www.wojtaszek.ca/images/small10.jpg";
profile[10] = "http://www.wojtaszek.ca/images/small11.jpg";
profile[11] = "http://www.wojtaszek.ca/images/small12.jpg";
profile[12] = "http://www.wojtaszek.ca/images/small13.jpg";
profile[13] = "http://www.wojtaszek.ca/images/small14.jpg";
profile[14] = "http://www.wojtaszek.ca/images/small15.jpg";
profile[15] = "http://www.wojtaszek.ca/images/small16.jpg";
profile[16] = "http://www.wojtaszek.ca/images/small17.jpg";


function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
// -->