 //-- Generate a random number between 0 and max.
      var current;
	  
	  function randomNum(max) {  
      var rNum=NaN
        while (isNaN(rNum)) {
          rNum=Math.floor(Math.random()*(max))
        }
		current = rNum;
        return rNum
      }
	  var pic = new Array()
      //pic[0]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/Alberta.jpg"
      //pic[1]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/KW.jpg"
      //pic[2]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/patricia-jessie.jpg"
	  pic[0]="/CentreApps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/centre_splash.jpg"
	  pic[1]="/CentreApps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/centre_splash.jpg"
	  pic[2]="/CentreApps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/centre_splash.jpg"
      //pic[1]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/centre-splash.jpg"
      //pic[2]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/centre-splash.jpg"
	  
	  var English = new Array()
	  English[0]="&nbsp;"
	  English[1]="&nbsp;"
	  English[2]="&nbsp;"
	  //English[0]="Recipients:<br>Erica and David from Alberta"
	  //English[1]="Recipient:<br>Jeffery from Ontario"
	  //English[2]="Recipient:<br>Patricia and her daughter from Newfoundland and Labrador"

      var French = new Array()
	  French[0]="&nbsp;"
	  French[1]="&nbsp;"
	  French[2]="&nbsp;"
	  //French[0]="Transfusés :<br>Erica et David de l'Alberta"
	  //French[1]="Transfusé :<br>Jeffery de l'Ontario"
	  //French[2]="Transfusée :<br>Patricia, de Terre-Neuve-et-Labrador,<br>et sa fille"
	  
	  var Bpic = new Array()
      Bpic[0]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/beautyofbloodbanner-biling.gif"
      Bpic[1]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/beautyofbloodbanner-biling.gif"
	  Bpic[2]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/beautyofbloodbanner-biling.gif"
	  //Bpic[0]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/splash_urgent_need-bl.gif"
      //Bpic[1]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/splash_urgent_need-bl.gif"
	  //Bpic[2]="/Centreapps/Internet/UW_V502_MainEngine.nsf/resources/j2005/$file/splash_urgent_need-bl.gif"
	  
	  function showBanner(){
	  document.write ('<img src="'+Bpic[current]+'" border="0" width="468" height="60" hspace="0" vspace="0" align="top" alt="Advertisement" usemap="#Yahoo" />')
	  //document.write ('<map name="Yahoo">')
	  //document.write ('<area shape="rect" coords="3,3,464,57"')
	  //document.write ('href="http://www.dontmissabeat.ca" target="new" alt="Don`t Miss A Beat - Play it, save a life and you can win! Musique en t&ecirc;te! - Prix &agrave; gagner! Jouez et sauvez une vie !"></map>')
	  //document.write ('<area shape="rect" coords="260,0,468,60"')
	  //document.write ('href="/centreapps/internet/uw_v502_mainengine.nsf/page/F_2005_Holiday" alt="Illuminez une vie de votre bonne étoile."></map>')
	  }
	  
	  function showImage(){
	  document.write ('<img src="'+pic[current]+'" border="0" width="280px" height="280px" hspace="0" vspace="0" align="top" Alt="Recipient-Receveur">')
	  }

      function showText(){
      document.write ('<span class="RecipientText">'+English[current]+'</span>')
      }

      function FrenchText(){
      document.write ('<span class="RecipientText">'+French[current]+'</span>')
      }
	  
	  

//-->