function MakeArray(n) 
{ 
       this.length = n; 
       for (var i = 1; i <= n; i++) 
       { 
           this[i] = 0 
       }
           return this   

}

//Function to change quotes while reloading english page
function Random()
{

       Quotes=new MakeArray(0)
         numQuotes=1
    
       	Quotes[0] = "<b>Ken Davis, Director of Marketing and Promotions for Lone Pine Publishing and former General Manager for CKUA:</b><br><br>&quot;<i>Congratulations on your new website.  It should prove an invaluable resource to students and the general public alike.  As former general manager for CKUA Radio, I worked with Cheryl Croucher in designing Heritage Trails, the radio series incorporated in your site, and was extensively involved in discussions with Alberta Community Development and the Alberta Historic Resources Foundation which facilitated production of the series. It is gratifying to see Heritage Trails put to further constructive use.</i>&quot;";
       	

     var now= new Date()
     var sec= now.getSeconds()
        return Quotes[sec % numQuotes];
}

