function submitToNewWindow(theForm, height, width) {   

	uniqueKey = Math.round(Math.random() * 100000);
    winName = "temp" + uniqueKey;
    popup =  (window.open('', winName, 'width=' + width + ',height=' + height + ',resizable,scrollbars,status,'));
    theForm.target = winName;
    theForm.submit();
}


function getCheckboxValuesToNewWindow( theForm, url, checkboxname, height, width ) {
		
    uniqueKey = Math.round(Math.random() * 100000);
    winName = "temp" + uniqueKey;
    popup =  (window.open('', winName, 'width=' + width + ',height=' + height + ',resizable,scrollbars,status,'));
    theForm.target = winName;
    var prior = theForm.action;
    theForm.action = url;
    theForm.submit();
    theForm.target='_self';
    theForm.action=prior;
}
