
	function windowOpener( path, winName, width, height ) {
		width = width + 20
		height = height + 30
		window.open( path, winName,"width="+width+",height="+height+",status=0,toolbar=0,location=0,directories=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,top=0,left=0")
             }


	function click(e)
	   {
	   var msg = "Right-Click disabled to preserve copyright. The images, films and descriptions listed here are copyright Adelphi Films. All Rights Reserved Worldwide";
	   if (document.all)
	      {
	      if (event.button == 2)
	         {
	         alert(msg);
	         return false;
	         }
	      }
	   if (document.layers)
	      {
	      if (e.which == 3)
	         {
	         alert(msg);
	         return false;
	         }
	      }
	   }

	if (document.layers)
	   {
	   document.captureEvents(Event.MOUSEDOWN);
	   }

	document.onmousedown=click;

