function popupNotregistered(type, milliseconds)
{
    if (milliseconds == null || milliseconds == "undefined") {
        tb_show('', '/popup_notregistered?keepThis=true&TB_iframe=true&height=449&width=765', null);
    }
    else if (isNaN(parseInt(milliseconds))) {
        milliseconds = 2000;
    }

    if (milliseconds != -1) {
        setTimeout("tb_show('', '/popup_notregistered?keepThis=true&TB_iframe=true&height=449&width=765', null)", milliseconds);
    }       
}


function popupNotconfirmed(param)
{
    setTimeout("tb_show('', '/popup_commentblocked?infotype="+param+"&keepThis=true&TB_iframe=true&height=355&width=571', null)", 100);       
}


