function terms(link, width, height, resizable, scroll) {
    if (!window.focus) 
        return true;
    
    var href;
    if (typeof(link) == 'string')
        href=link;
    else
        href=link.href;
    if(!resizable) 
        resizable = 'no';
    
    if(!scroll) 
        scroll = 'no';

    window.open(href, '', 'width='+width+',height='+height+',scrollbars='+scroll+',resizable='+resizable+',alwaysRaised=yes');
}
