/* info mail account */
function WriteInfoAccount()
{
	coded = "ma7d@EhdD.ma7d"
	key = "SjXkwrB8cGmJMDIux0KHozhAOfYpZLqltgdW4n27QRN9FCE653PaU1eyvsiVTb"
	shift = coded.length
	link = ""
	for (i = 0; i < coded.length; i++) {
		if (key.indexOf(coded.charAt(i)) == -1) {
			ltr = coded.charAt(i)
			link += (ltr)
		}
		else {     
			ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length
			link += (key.charAt(ltr))
		}
	}
	document.write("<a href='mailto:"+link+"'>info@tcob.info</a>")
}

/* right click protection */
function rightclick(e) {
	if (document.all) {
		if (event.button == 2 || event.button == 3) {
			alert("Copyright © Confederate Choppers Nijmegen - Holland");
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert("Copyright © Confederate Choppers Nijmegen - Holland");
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
};
document.onmousedown = rightclick;

