<!-- 
var photolist = new Array; photolist[0]="dummy";
photolist[1]="photo01"; photolist[2]="photo02"; photolist[3]="photo03"; photolist[4]="photo04"; photolist[5]="photo05";
photolist[6]="photo06"; photolist[7]="photo07"; photolist[8]="photo08"; photolist[9]="photo09"; photolist[10]="photo10";
photolist[11]="photo11"; photolist[12]="photo12"; photolist[13]="photo13"; photolist[14]="photo14";

var photomaplist = new Array; photomaplist[0]="photomap1"; photomaplist[1]="photomap2"; 
var photoaeriallist = new Array; photoaeriallist[0]="photoaerial1"; photoaeriallist[1]="photoaerial2"; 

function bigsmall(whichone){
  for (n=0; n<photomaplist.length; n=n+1){document.getElementById(photomaplist[n]).style.display="none";}
  if (whichone!="dummy"){document.getElementById(whichone).style.display="block";}
}

function bigsmalla(whichone2){
  for (n=0; n<photoaeriallist.length; n=n+1){document.getElementById(photoaeriallist[n]).style.display="none";}
  if (whichone2!="dummy"){document.getElementById(whichone2).style.display="block";}
}

function bigsmallp(whichone3){
  for (n=0; n<photolist.length; n=n+1){document.getElementById(photolist[n]).style.display="none";}
  if (whichone3!="dummy"){document.getElementById(whichone3).style.display="block";}
}


//-->

