<!-- hide from n'sync fans

//javascript hatalarını görmezden gel. *********1

function stopErrors() {
		return true;
}
window.onError = stopErrors()

//**********1

//Metni seçmeyi engelle *************2

function disableselect(e)  //Disable select-text 
{
return false
}

function reEnable()  //Disable select-text 
{
return true
}

//if IE4+ Disable select-text 
document.onselectstart=new Function ("return false")

//if NS6  Disable select-text
if (window.sidebar)
{
document.onmousedown=disableselect
document.onclick=reEnable
}

//***********2



//***********3

/*Sağ Tuş Yasağı by KocSYSTEMS*/
if (window.Event) // Sadece Netscape ve IEnin tüm verisyonları için.
document.captureEvents(Event.MOUSEUP); // mousenin hareketlerini tut.
function nocontextmenu()  // Bu sadece IE4+ lar kullanacak diğerleri önemsemeyecek.
{
	event.cancelBubble = true
	event.returnValue = false;
	return false;
}
function norightclick(e)	// Bu fonksiyonu diğerleri kullanacak.
{
	if (window.Event)	// again, IE or NAV?
	{
		if (e.which == 2 || e.which == 3)
			return false;
	}
	else
		if (event.button == 2 || event.button == 3)
		{
			event.cancelBubble = true
			event.returnValue = false;
			return false;
		}
}
document.oncontextmenu = nocontextmenu;		// IE5+ için
document.onmousedown = norightclick;		// diğerleri için

// -->