<?xml version="1.0" encoding="UTF-8" ?> 
<Module>
<Content type="html">
<![CDATA[
	<script language="JavaScript" >

    function PadDigits(n, totalDigits) 
    { 
        n = n.toString(); 
        var pd = ''; 
        if (totalDigits > n.length) 
        { 
            for (i=0; i < (totalDigits-n.length); i++) 
            { 
                pd += '0'; 
            } 
        } 
        return pd + n.toString(); 
    } 
 
var rnd_no = Math.round(633*Math.random());
var image_no=PadDigits(rnd_no,4);
var imagepath="http://www.csulb.edu/~clipo/moai/small/";
var imgsrc = imagepath + image_no + "/" + image_no + "-2.jpg";
document.write('<img src="'+imgsrc+'">');
document.write('<font color="white"><BR>Moai Number: '+image_no);
document.write('  <a href="http://www.csulb.edu/~clipo/moai/'+image_no+'/"> (more)</a><BR>');
document.write('</font>');
</script>
]]>
</Content>
</Module>

