// close and open popup
var theWin

function popup(theURL) {

    if (theWin == null || theWin.closed) {
        theWin = window.open(theURL, "theWin", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=525,height=650,top=50,left=200");
    } else {
        theWin.close()
        theWin = window.open(theURL, "theWin", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=525,height=650,top=50,left=200");
    }
}

// hack to deal with image rollover flicker in IE
try {
    document.execCommand('BackgroundImageCache', false, true);
} catch (e) { }

var theWin2
function uploadFile(CaseStudyId, uPanel) {
    if (theWin2 == null || theWin2.closed) {
        theWin2 = window.open('fileUpload.aspx?CaseStudyId=' + CaseStudyId + "&uPanel=" + uPanel, "theWin2", "toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=no,resizable=no,width=550,height=200,top=50,left=200");
    } else {
        theWin2.close()
        theWin2 = window.open('fileUpload.aspx?CaseStudyId=' + CaseStudyId + "&uPanel=" + uPanel, "theWin2", "toolbar=no,location=no,directories=no,status=0,menubar=no,scrollbars=no,resizable=no,width=550,height=200,top=50,left=200");
    }
}
