function popWindow(mTitle, mText, mWidth, mHeight, mScrollbars){
    wOptions = "width=" + mWidth;
    wOptions += ",height=" + mHeight;
    if(mScrollbars){
        wOptions += ", scrollbars";
    }
    
        
    myWindow = window.open("", "helperWindow", wOptions);
    myWindow.document.write("<div style='font-family: arial, verdana; font-size: 12px;'>");
    myWindow.document.write("<strong>" + mTitle + "</strong><br />");
    myWindow.document.write(mText);
    myWindow.document.write("<div style='text-align: center;'><button onClick='javascript: window.close()' style='font-size: 12px;'>Close Window</button></div>");
    myWindow.document.write("</div>");
    myWindow.document.close();
}
    
   