function GetCookie(name)
{
    var cname = name + "=";
    var dc = document.cookie;
    var val = "";

    if (dc.length > 0) {
        begin = dc.indexOf(cname);
        if (begin != -1) {
            begin += cname.length;
            end = dc.indexOf(";", begin);
            if (end == -1) end = dc.length;
            val += unescape(dc.substring(begin, end));
        }
    }

    return val;
}

var pnum=Math.floor(Math.random()*10)%2;


if(pnum == "0" ) {
        if (GetCookie("pop_lgt") != "checked") window.open('http://www.malteo.net/inc/notice.html','popup','marginwidth=0, toolbar=no, location=no,resizable=0,directories=no, status=no, scrollbars=auto, menubar=no,  top=50,left=300,width=510, height=650');
}

