function gotophotos(criteria) {
   document.getElementById("continue_"+criteria).disabled=true;
   var data = document.getElementById(criteria).value;
   var url = "photo_gallery.php?"+criteria+"=" + escape(data); 
   document.getElementById("continue_"+criteria).disabled=false;  
   window.location = url;                        
}     
