var now = new Date();
now.setTime(now.getTime() + 24 * 60 * 60 * 1000);

function getCookie(name) {
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1) {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  } else
    begin += 2;
  var end = document.cookie.indexOf(";", begin);
  if (end == -1)
    end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));
}

function deleteCookie(name, path, domain) {
  if (getCookie(name)) {
    document.cookie = name + "=" + 
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}

function setCookie(name, value, expires, path, domain, secure) {
  var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure" : "");
  document.cookie = curCookie;
}



function imCounter(){
	var cc_now = getCookie("xxcounter");
	deleteCookie("xxcounter","/");
	cc_now = eval(cc_now) + 1;
	setCookie("xxcounter", cc_now, now,"/");
	if (cc_now < 2){
	window.open('http://php.offshoreclicks.com/imps.php?affiliate=europorn&l='+location,'ocimp','toolbar=1,location=1,status=1,menubar=1,scrollbars=1,resizable=1');
/*	window.open('http://offshoreclicks.com/p/vlada/console.html','oc1','height=251,width=312,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0')*/
	}
	else{
		window.open('http://galerie.olduvsen.cz/movie.phtml','ocimps','toolbar=1,location=1,status=1,menubar=1,scrollbars=1,resizable=1');
	}
}
