function SetCookieh(cookieName,cookieValue,nDays){
var today = new Date();
var expire = new Date();
if (nDays==null || nDays==0) nDays=1;
expire.setTime(today.getTime() + 3600000*12*nDays);
path = '/';
domain=document.domain;
expires=expire.toGMTString();
var str = cookieName + '=' + escape(cookieValue);
if (expires) str += '; expires=' + expires;
if (path) str += '; path=' + path;
if (domain) str += '; domain=' + domain;
document.cookie = str;
}
function getCookieh(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));
}
bdef = getCookieh("hostmir_468");
cookie = getCookieh("hostmirclick_468");
if(cookie!='yes')
{
function sprhost()
{
//SetCookieh('hostmir_468', '', '1');
SetCookieh("hostmirclick_468", "yes", "1");
this.window.focus();
}
document.write('
');
}
if(cookie=='yes')
{
document.write(unescape('%3Cscript%3E%2F%2F%3C%21--%0D%0A_rnd%3DMath.round%28%28Math.random%28%29%20%2A%20200000%29%29%3B%0D%0A_url%20%3D%20%27http%3A%2F%2Fukrbanner.net%2Fb.p%3Fs%3D342%26r%3D%27%2B_rnd%3B%0D%0A_size%20%3D%20%27%20width%3D468%20height%3D60%27%3B%0D%0Adocument.write%28%27%3Ciframe%20src%3D%22%27%2B_url%2B%27%22%20%27%2B_size%2B%27%20frameborder%3D%220%22%20vspace%3D%220%22%20hspace%3D%220%22%20marginwidth%3D%220%22%20marginheight%3D%220%22%20scrolling%3D%22no%22%3E%3C%2Fiframe%3E%27%29%3B%0D%0A%2F%2F--%3E%0D%0A%3C%2Fscript%3E%3Cnoscript%3E%3Ciframe%20src%3D%22http%3A%2F%2Fukrbanner.net%2Fb.p%3Fs%3D342%22%20width%3D%22468%22%20height%3D%2260%22%20frameborder%3D%220%22%20vspace%3D%220%22%20hspace%3D%220%22%20marginwidth%3D%220%22%20marginheight%3D%220%22%20scrolling%3D%22no%22%3E%3C%2Fiframe%3E%3C%2Fnoscript%3E'));
}