function GetReport(URL, winName) {
var win = null;
var width = 1000;
var height  = 600;

URL = 'http://deq12rpt.deq.state.or.us/Reports/Default.aspx?Report=%2fSWIFTReportProject%2fSWIFTActivePmtFacilities&amp;rs%3aCommand=Render';
win = window.open(URL, winName, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height + ',left = 30,top = 30');

}

