function popup(url, name, width, height) {
    if ( !window.focus ) {
        return true;
    }

    window.open(url, name, 'width=' + width + ',height=' + height+ ',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');

    return false;
}

