function openPic(pic,title){
  s = pic.src;
  width = 402;
  height = 620;
  
  if(pic.width > pic.height){
    width = 700;
    height = 480;
  }
  window.open('image.php?img=' + pic + '&title' + title,'','status=0,addressbar=0,toolbar=0,menubar=0,scrollbars=0,title=0,resizable=0');
  //w.resizeTo(width + 40,height + 70);
  //w.moveTo(10,10);
}
//======================================
function swapMenuClass(t,over){
  if(over)
    t.style.borderLeft = '3px solid #F7BF4E';
  else
    t.style.borderLeft = '3px solid #666666';
}