/**
 * Created by IntelliJ IDEA.
 * User: zc
 * Date: 11-4-11
 * Time: 上午10:16
 * To change this template use File | Settings | File Templates.
 */
function popup(url,width,height){
    if(!width)
        width=500;
    if(!height)
        height=screen.availHeight-200;
    height=Math.min(height,500)
    var win = window.open(url, 'winBK', 'width='+width+',height=' + height + ',status=no,resizable=yes,scrollbars=yes');
    win.focus();
}
$.fn.extend({
    popupLink:function(){
        return this.each(function(){
            var _self=$(this);
            _self.click(function(){
                popup(_self.attr("href"),_self.attr("ui.width"),_self.attr("ui.height"));
                return false;
            });
        })
    }
});

$(function(){
    $(".def-popupLink").popupLink();
})

