
function buildDoc(a){
var statement = window.open("","statement","width=750,height=550,scrollbars=yes,menubar=yes");
html = a.b
//variable name of window must be included for all three of the following methods so that
//javascript knows not to write the string to this window, but instead to the new window
statement.document.write(html)
statement.document.close();
}


