


    <!--
        // Trivial and pointless little JavaScript to interpolate random 
        // strings into a page.
    
    var sc = 44;                    // Number of alternative strings
    var s = new Array(sc);          // Array to hold alternative strings
    
    // String definitions. There should be exactly 'sc' strings, numbered
    // from 0 to (sc - 1). You can embed markup in the strings, provided
    // you're careful to escape any double quotes. Note that if you fail
    // to define enough strings, you'll get 'undefined' appearing in place
    // of the string, or possibly even a security violation, which tends
    // to be unaesthetic.
    
	s[0] = "p1.jpg";
	s[1] = "p2.jpg";
	s[2] = "p3.jpg";
	s[3] = "p4.jpg";
	s[4] = "p5.jpg";
	s[5] = "p6.jpg";
	s[6] = "p7.jpg";
	s[7] = "p8.jpg";
	s[8] = "p9.jpg";
	s[9] = "p10.jpg";
	s[10] = "p11.jpg";
	s[11] = "p12.jpg";
	s[12] = "p13.jpg";
	s[13] = "p14.jpg";
	s[14] = "p15.jpg";	
     	s[15] = "p16.jpg";
     	s[16] = "p17.jpg";	
     	s[17] = "p18.jpg";	
     	s[18] = "p19.jpg";	
     	s[19] = "p20.jpg";	
     	s[20] = "p21.jpg";	
     	s[21] = "p22.jpg";	
     	s[22] = "p23.jpg";	
     	s[23] = "p24.jpg";	
     	s[24] = "p25.jpg";	
     	s[25] = "p26.jpg";	
     	s[26] = "p27.jpg";	
     	s[27] = "p28.jpg";	
     	s[28] = "p29.jpg";
     	s[29] = "p30.jpg";	
     	s[30] = "p31.jpg";
     	s[31] = "p32.jpg";
     	s[32] = "p33.jpg";
     	s[33] = "p34.jpg";
     	s[34] = "p35.jpg";
     	s[35] = "p36.jpg";
     	s[36] = "p37.jpg";
     	s[37] = "p38.jpg";
     	s[38] = "p39.jpg";
     	s[39] = "p40.jpg";
     	s[40] = "p41.jpg";
     	s[41] = "p42.jpg";
     	s[42] = "p43.jpg";
     	s[43] = "p45.jpg";
     	s[44] = "p48.jpg";

     	
     	
    
    // pickRandom - Return a random number in a given range. If we're running
    // on an older browser that doesn't support 'Math.random()', we can fake
    // it by using the current time. This isn't ideal for mission-critical
    // security applications, but it's fine here. Note that we divide the
    // current time by 1000 to get rid of the milliseconds which Navigator
    // doesn't seem to take into account.
    
    function pickRandom(range) {
        if (Math.random)
            return Math.round(Math.random() * (range-1));
        else {
            var now = new Date();
            return (now.getTime() / 1000) % range;
        }
    }
    
    // Write the string into the document. The "<BLOCKQUOTE>" tags are just 
    // for formatting; you can put as much or as little HTML around these 
    // strings as you like.
    
    var choice = pickRandom(sc);
    document.writeln("<img class='photo' src='" +
                      s[choice] + 
                     
                     "'></img>");
    
















