﻿/*
* jQuery ixcore 1.0.1
*
* Copyright (c) 2009 ixcore.corp.
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* jQuery ixcore Utilities
*
* Depends:
*	ixcore.utility.js
*/
// 팝업 윈도우
var popupWin = function(url, name, w, h, scroll) {
    var _win = window.open(url, name, 'width=' + w + ', height=' + h + ', scrollbars=' + scroll + ', status=no');
    _win.focus();
    return _win;
}