function galleryColor(which, mouseover){
  if (document.all||document.getElementById){
   if (mouseover) which.style.borderColor='#FFF3FD';
   else which.style.borderColor='#EBD3E2';
   return true;
  }
}