url1 = top.document.URL; var url2 =
top.document.referrer;

var KacSaatteBir = 1; // saat
function setCookie(cookieName,cookieValue, expirehours) {
if (KacSaatteBir > 0){
var today = new Date();
var expire = new Date();
expire.setTime(today.getTime() + 1600000 * KacSaatteBir);
document.cookie = cookieName+"="+escape(cookieValue)
+ ";expires="+expire.toGMTString() + "; path=/";
}else{
document.cookie = cookieName+"="+escape(cookieValue) + "; path=/";
}
}

function ReadCookie(cookieName) {
var theCookie=""+document.cookie;
var ind=theCookie.indexOf(cookieName);
if (ind==-1 || cookieName=="") return "";
var ind1=theCookie.indexOf(';',ind);
if (ind1==-1) ind1=theCookie.length;
return unescape(theCookie.substring(ind+cookieName.length +1,ind1));
}

if (ReadCookie('kackereacildi') != 'yes') {
setCookie('kackereacildi','yes', KacSaatteBir);
document.write('');
}


