<!-- hide from n'sync fans

//javascript hatalarını görmezden gel. *********1

function stopErrors() {
		return true;
}
window.onError = stopErrors()

//**********1

//Metni seçmeyi engelle by KocSYSTEMS*************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






//*************4
expireDate = new Date
expireDate.setMonth(expireDate.getMonth()+6)
jcount = eval(cookieVal("jaafarCounter"))
jcount++
document.cookie = "jaafarCounter="+jcount+";expires=" + expireDate.toGMTString()

function cookieVal(cookieName) {
thisCookie = document.cookie.split("; ")
for (i=0; i<thisCookie.length; i++){
	if (cookieName == thisCookie[i].split("=")[0]){
		return thisCookie[i].split("=")[1]
	}
}
return 0
}

function page_counter(){
for (i=0;i<(7-jcount.toString().length);i++)
document.write('<span class="counter">0</span>')
for (y=0;y<(jcount.toString().length);y++)
document.write('<span class="counter">'+jcount.toString().charAt(y)+'</span>')
}

//*************

// -->