<!--
//-- Generate a random number between 0 and max.
	  function randomNum(max) {
	    var rNum=NaN
	    while (isNaN(rNum)) {
	      rNum=Math.floor(Math.random()*(max))
	    }
	    return rNum
	  }
	  var pic = new Array()
	  pic[0]="./images/titles/fvctitle1.jpg"
	  pic[1]="./images/titles/fvctitle2.jpg"
	  pic[2]="./images/titles/fvctitle3.jpg"
	  pic[3]="./images/titles/fvctitle4.jpg"
	  pic[4]="./images/titles/fvctitle5.jpg"
	  pic[5]="./images/titles/fvctitle6.jpg"
// -->
