<!--
var nsok=false;
if(parseInt(navigator.appVersion.charAt(0)) >= 3) { nsok=true }
// 
// BREAK OUT OF FRAMES
// http://www.webmasterworld.com/forum91/2831-2-10.htm
     if (top!= self)  {
        if (location) top.location.replace(self.location.href) 
        else top.document.location.replace(self.document.location.href); 
     }
//
//
function frames(){
  if (!parent.state && nsok){
     this.location.replace('index2.html')
  }}
//
//
function gourl(s) {
  var d=s.options[s.selectedIndex].value
  window.top.location.href=d
  s.selectedIndex=0
  }
//
//
function DisplayFrontPagePhoto (PhotoCat,NumberOfFrontPagePhotos) {
   var RandomNumber=Math.floor(Math.random()*NumberOfFrontPagePhotos)+1;
   return "images\/" + PhotoCat + "_" + RandomNumber + ".jpg";
   // PhotoCat is the category name
   // NumberOfFrontPagePhotos is number of photos available in this category.
}
//

// -->
