﻿function popUp(URL) {
    var width = 625;
    var height = 650;
    if (URL.indexOf('news.aspx') > -1){
        width = 1050;
        height = 800;
    }
    var newWindow = window.open(URL, new Date().getTime(), 'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes');
    newWindow.opener = this;
}
