/***********************************************************************************
***	AUTOMATIC ELECTRO PLATING JavaScript Sheet                                   ***
*** File Name: aep.js                                                            ***
*** Automatic Electro Plating Copyright 2008                                     ***
*** The Contents of this file may not be copied, duplicated, or reproduced       ***
*** without the prior written consent from Afutomatic Electro Plating and or     ***
*** ZIP-IT DESIGNS, LLC.                                                         ***
*** This web site is hosted and designed by: ZIP-IT DESIGNS, LLC                 ***
************************************************************************************/

//Right Click Disabled

var message="Sorry, that function is disabled.\n\nContents and Graphics copyright © Automatic Electro Plating\n\nOur work is not a Public Domain, and should NOT be taken from this site.\n\If you are in need of more information about this site, please contact us.";

function clickIE4()

{

	if (event.button==2)

	{

		alert(message);

		return false;

	}

}

function clickNS4(e)

{

	if (document.layers||document.getElementById&&!document.all)

	{

		if (e.which==2||e.which==3)

		{

			alert(message);

			return false;

		}

	}

}

if (document.layers)

{

	document.captureEvents(event.MOUSEDOWN);

	document.onmousedown=clickNS4;

}

else if (document.all&&document.getElementById)

{

	document.onmousedown=clickIE4;

}

document.oncontextmenu=new Function("alert(message);return false")

function openFullWindow(url)

{

     window.open(url,'','scrollbars=1, toolbar=no, resizable=yes, channelmode=yes,type=fullWindow,status=no, titlebar=yes'); 

}
//End Right Click Disabled
