// JavaScript Document

function showPhoto(url, wName, width, height)
{ 
  if(navigator.appName == 'Microsoft Internet Explorer') width += 20;
  other = "status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=1, scrollbars=1, height="+height+", width="+width;
  window.open(url, wName, other);
}

