﻿function get_cookie1(Name) {
var search = Name + "="
var returnvalue = ""
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset)
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function wino() {
   var s = ''; var width = screen.availWidth-50; var height = screen.availHeight - 150;
    s = s + 'left=0,';  s = s + 'top=0,'; s = s + 'width=' + width + ',height=' + height + ',toolbar=1,location=1,status=1,menubar=1,scrollbars=0,resizable=1';
    w = window.open('http://webokna.blogspot.com/', '_url', s);  
    
    var today = new Date();
    var expires = new Date(today.getTime() + 1*24*60*60*1000);
    document.cookie="wopen=yes;  path=/; expires=" + expires.toGMTString() ;
    
    window.focus();
}

function winoen() {
   var s = ''; var width = screen.availWidth-50; var height = screen.availHeight - 150;
    s = s + 'left=0,';  s = s + 'top=0,'; s = s + 'width=' + width + ',height=' + height + ',toolbar=1,location=1,status=1,menubar=1,scrollbars=0,resizable=1';
    w = window.open('http://webokna-en.blogspot.com/', '_url', s);  
    
    var today = new Date();
    var expires = new Date(today.getTime() + 1*24*60*60*1000);
    document.cookie="wopen=yes;  path=/; expires=" + expires.toGMTString() ;
    
    window.focus();
}

function openurl() { if (get_cookie1("wopen")==""){wino();}}


//document.body.onmousemove = openurl;
//openurl();

