function photo_open(link, width, height)
{
  var photoWindow;

  photoWindow = window.open(link,"viewer",'toolbar=0,location=0,directories=0,status,menubar=0,scrollbars=0,resizable=0,left=0,top=0,width='+width+',height='+height);
  photoWindow.resizeTo(width,height);
  photoWindow.focus();
}



function popurl(link)
{
  var popupWindow;

  popupWindow = window.open(link,"external",'toolbar,location,directories=0,status,menubar,scrollbars,resizable,left=0,top=0,width=600,height=400');
  popupWindow.focus();

}