// These functions are part of the SkinFactory.net site (c) 2005 by SkinFactory Bonn

function click(evt) 
{
	var rightclick;
	if (!e) var e = window.event;
	rightclick = ((e.which == 3) || (e.button == 2));
	
	if (rightclick)
	{
		alert('Copyright © 2005 - www.SkinFactory.net - Alle Rechte vorbehalten ');
		return false;
	}
	else
	{
		return true;		
	}
};

function click2()
{
	alert('Copyright © 2005 - www.SkinFactory.net - Alle Rechte vorbehalten ');
	return false;	
};

function disableContextMenu()
{
	if (navigator.appName.indexOf("Netscape") != -1)
	{
		document.captureEvents(Event.MOUSEDOWN);
	}
	
	document.onmousedown=click; 
};

function disableDragAndDrop()
{
	document.ondragstart=new Function("return false;");
};

disableContextMenu();
disableDragAndDrop();
