﻿if (top.location.href)
{
	if (top.location.href.search("newfeel") == -1)
	{
		var message="כל הזכויות שמורות לפרנדלי";
		
		function click(e) 
		{
			if (document.all) 
			{
				if (event.button==2||event.button==3) 
				{
					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;
		    function disabletext(e) 
			{
				if(e.target.tagName != 'INPUT')
				return false
			}

        function reEnable() 
		{
            return true
        }
        //if the browser is IE4+
        document.onselectstart = new Function("if(event.srcElement.tagName != 'INPUT') return false");
        if (window.sidebar) 
		{
            document.onmousedown = disabletext
            document.onclick = reEnable
        }
	}
}
