<!--
	window.document.onmousedown = ProtectMyPage;

	function ProtectMyPage()
	{
		if((window.event.button == 2) || (window.event.button == 3))
		{
			alert("___________________________ \n\n" +
			"        Copyright: 2008-2009 \n" +
			" Designed By Mr. Reza Badie \n" +
			"      reza9604@yahoo.com \n" +
			"           All rights reserved. \n" +
			"___________________________ \n");

			return(false);
		}
		else
			return(true);
	}
-->
