function traffic() {
	var strCookieName="reloadtraffic";
	var intHeight="800";
	var intWidth="1024";
	var strTitle="za839020394";
	var strUrl="http://www.sexkino.to/out.php";
	
    // Get cookie for reload block
    var strCookieValue = document.cookie;
    var strPattern = eval('/'+strCookieName+'=true/i');
    // Check cookie
    if (!strCookieValue.match(strPattern)) {
        // Set cookie for reload block
        var objDate = new Date();
        objDate = new Date(objDate.getTime()+1000*60*60); // Reload block for 1 hour
        document.cookie = strCookieName+'=true; expires='+objDate.toGMTString()+';';         
        // Set position
    	var intLeft = (screen.width) ? (screen.width-intWidth)/2 : 100;
        var intTop  = (screen.height) ? (screen.height-intHeight)/2 : 100;
        // PopUnder parameter
    	var strParameter = 'width='+intWidth+',height='+intHeight+',top='+intTop+',left='+intLeft+',scrollbars=yes,location=yes,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,dependent=no';
    	var objWindow = window.open(strUrl,'',strParameter);
        // Set popUnder in the background 
    	objWindow.blur();
        window.focus();
    }
}  

