<!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!

var message="Sorry, no right click available.  All content copyright _25A9 WebWedding.  For further info please feel free to contact us at webmaster_40womencome.com"; // Message for the alert box
var active=false; // =true, right click protection on. =false, right click protection off
// Don't edit below!


	function click(e) 
	{
	if (active)
	{
		if (document.all) 
		{
			if (event.button == 2) 
			{
				alert(message);
				return false;
			}
		}
		if (document.layers) 
		{
			if (e.which == 3) 
			{
				alert(message);
				return false;
			}
		}
	}
	}
	if (document.layers) 
	{
		document.captureEvents(Event.MOUSEDOWN);
	}
	document.onmousedown=click;
// -->