﻿/**
* Các hàm điều khiển window
*/
WinFn = {
    /**
    * Mở cửa sổ thông báo spam
    */
    reportAbuse: function(cfg) {
        var width = 600, height = 550;
        return !window.open(cfg.url, 'ReportAbuseWindow', 'toolbar=0,location=0, directories=0, status=0, menubar=0,resizable=1,scrollbars=1, width=' + width + ', height=' + height + ', left=' + (screen.width - width) / 2 + ', top=' + (screen.height - height) / 2);
    },
    openWindow: function(cfg) {
        var width = 600, height = 550;
        return !window.open(cfg.url,'openWindow', 'toolbar=0,location=0, directories=0, status=0, menubar=0,resizable=1,scrollbars=1, width=' + width + ', height=' + height + ', left=' + (screen.width - width) / 2 + ', top=' + (screen.height - height) / 2);
    }
}
