if (typeof(QLife) == 'undefined') {
    var QLife = {};
}

QLife.PrintMap = {
    open : function(hid){
        window.open(
            'printmap.php?hid=' + String(hid).escapeHTML(),
            'printmap',
            'width=710,height=600,menubar=yes,toolbar=yes,location=yes,resizable=yes,scrollbars=yes'
            );
    }
}

