you can use the following javascript to open a new window just put the separate reports in three different pages and have the file with the three check boxes popup the windows with the report generating code
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
put that script at the beginning of your asp page. (right before the '<html>' tag but not in asp delimiters) and call the script with the following code
MM_openBrWindow('yourpage.asp','','')
sample link would be
<a href ="MM_openBrWindow('addressreport.asp','','')"> click here to generate an address report in a different window</a>
Post another reply if you have any other problems
Hope i helped
Edited by pmormr