Buyrun hocam umarım işinize yarar

TEST
<script>

function setCookie(cname,cvalue,exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}

function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}

function checkCookie() {
var zaman = getCookie("zaman");
console.log(zaman)
if (zaman != "") {
// 2. tıklama
window.open('https://www.facebook.com','_blank');
} else {
//Çerez 24 saat sonra silineceği için tekrar ilk tıklama google ye yönlendirilecek
setCookie("zaman", '1', 1);
//1. tıklama
window.open('https://www.google.com','_blank');

}
}

</script>