function photoPicCtr(){
 var photoPicName ;
 for (i=1; i<=6; i++){
  photoPicName = "photoPic" + i ;
  document.getElementById(photoPicName).style.display = "none" ;
 }
 photoPicName = "photoPic" + arguments[0] ;
 document.getElementById(photoPicName).style.display = "" ;

 var photoPicTName ;
  for (i=1; i<=6; i++){
  photoPicTName = "photoPicT_" + i ;
  document.getElementById(photoPicTName).style.display = "none" ;
 }
 photoPicName = "photoPicT_" + arguments[0] ;
 document.getElementById(photoPicName).style.display = "" ;

 var photoThumbName ;
 var photoActNum ;
 for (i=1; i<=2; i++){
  photoThumbName = "photoThumb" + i ;
  document.getElementById(photoThumbName).style.display = "none" ;
 }
 if (eval(arguments[0]) <= 3) photoActNum = 1 ;
 else photoActNum = 2 ;
 photoThumbName = "photoThumb" + photoActNum ;
 document.getElementById(photoThumbName).style.display = "" ;
}