function openPage(i,x) {
   var pageName = this.pageName
   document.open()
       document.writeln('<HTML>')
           document.writeln('<HEAD>')
               document.writeln('<title>Rim-to-Rim 2002</title>')
           document.writeln('</HEAD>')
           document.writeln('<body bgcolor="black">')
               document.writeln('<center>')
               document.writeln('<font color = "white"> ' + x + ' <font>')
               document.writeln('<br>')
               document.writeln('<br>')   
               document.writeln('<img src="pictures/' + i + '.jpg" alt="' + x + '" name="mainimage"></td>')
               document.writeln('<br>')
               document.writeln('<a href="#" onClick="history.go(-1)">Back</a>') 
               document.writeln('</center>')
           document.writeln('</body>')
       document.writeln('</html>')
   document.close()
}
