function popup(link, width, height)
{
  var popupWindow;

//window.alert(width);

  popupWindow = window.open(link,"external",'toolbar,location,directories=0,status,menubar,scrollbars,resizable,left=0,top=0,width='+width+',height='+height);
//  popupWindow.resizeTo(width,height);
  popupWindow.focus();

}

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=700,height=500');
  popupWindow.focus();
}