 myPix = new Array("/atf/cf/{168B193F-C7D9-4A4D-85D8-E97CAA9AC3A3}/phmm.jpg","/atf/cf/{168B193F-C7D9-4A4D-85D8-E97CAA9AC3A3}/ywca.jpg")
 imgCt = myPix.length 
 
 function choosePic() {
  if (document.images) {
   randomNum = Math.floor((Math.random() * imgCt))
   document.myPicture.src = myPix[randomNum]
  }
 }