/*********************************************************
	DD_Belated :: PNG FIX -- This is to replace the old PNG FIX
*********************************************************/
function newWindow(url, width, height) {
    var popWin = window.open(url, '_blank', 'width=' + width + ',height=' + height + ',scrollbars=1,resizable=1');
    if (popWin != null) {
        popWin.focus();
    }
}

function closeToolTip() {

    try {
        var activeToolTip = Telerik.Web.UI.RadToolTip.getCurrent();
    }
    catch (ex) {
        alert(ex);
    }
    finally { activeToolTip.hide(); }
}
