	function right(e) {
		//"Thanks for expressing an interest in my photos.
		//var msg = "Sorry, but you do not have the rights to copy this image. If you would like to purchase a copy of it please contact me.";
		
		msg = "Thanks for expressing an interest in my photos!" +  
		"\nIf you would like to own a copy of this particular one," + 
		"\nplease contact me at PVRPHOTO@COX.NET." ;
		//"Please be sure" + 
		//"\nto include the filename (found just below the photo on" +
		//"\nthis page), the size you would like, and I will reply" 
		//"\to you with cost and other information." ;
		
		//document.write("<body bgcolor=#000000 link=#FFFF00 vlink=#FF0000 alink=#FFFFFF>");
		//document.write("<table width=800 border=0 align=center>");
		//document.write("<tr>");
		//document.write("<td>");
		//document.write("<font face=arial color=#CCCCCC>");
		
		//document.write(msg);
		
		//document.write("</td>");
		//document.write("</tr>");
		//document.write("</table>");
		//document.write("</body>");
		
		if (navigator.appName == 'Netscape' && e.which == 3) {
			alert(msg);
			return false;
		}
		if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
			alert(msg);
			return false;
		}
			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;
		}
	 }
	}

