// Sorry, No Right Click Script

<!-- Hide from non-JavaScript browsers

var message="Sorry, that function has been disabled. The text and images \ncontained within this page are Copyright Protected. \n\nCopyright 1981-2003 MicroAge Computer Centers, All Rights Reserved."; 

function click(e)
{
	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;

// Stop hiding -->