<!--
function openwin (winame,file,width,height)  {
	window.open(file,winame,"status=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,menu=no,height="+height+",width="+width);
	}
	
function openwinscroll (winame,file,width,height)  {
	window.open(file,winame,"status=no,scrollbars=yes,resizable=no,toolbar=no,location=no,menu=no,height="+height+",width="+width);
	}
	
function openwindow (winame,file,width,height)  {
	window.open(file,winame,"status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=no,menu=yes,height="+height+",width="+width);
	}
	
function CheckAll(name) {		
    for (i=0, n=name.length; i<n; i++) {
        name[i].checked=true;
        }
	}

function UncheckAll(name) {		
    for (i=0, n=name.length; i<n; i++) {
        name[i].checked=false;
        }
	}

function print1() {
    var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
	
	document.body.insertAdjacentHTML('beforeEnd', WebBrowser);

    execScript("on error resume next: WebBrowser1.ExecWB 6, -1", "VBScript");
    execScript('on error resume next: WebBrowser1.outerHTML = ""', 'VBScript');
}

//-->