function right(e) 
{
var msg = "photographs copyright Janet Orletsky, 2003";
if (navigator.appName == 'Netscape' && e.which == 3) 
	{
	alert(msg);
	return true;
	}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) 
	{
	alert(msg);
	return true;
	}
	else return true;
}

function trap() 
{
  if(document.images)
    {
    for(i=0;i<document.images.length;i++)
      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
      }
    }
}

var popUpWin=0;
function popUpWindow(URL) {
var theWidth = 502;
var theHeight = 390;
    if (window.screen) {
        l = window.screen.availWidth * 0.5 - (theWidth * 0.5);
        t = window.screen.availHeight * 0.5 - (theHeight * 0.5);
						}
  if(popUpWin)
  {
	if(!popUpWin.closed) popUpWin.close();
	}
popUpWin = window.open(URL,"popUpWin","width="+theWidth+",height="+theHeight+",left="+l+",top="+t+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width="+theWidth+",height="+theHeight+",left="+l+", top="+t+",screenX="+l+",screenY="+t+"");
}
