// JavaScript Document
/*
var VBS = false;
window_onunload;
on error resume next;
set WB = nothing;
end sub

function printIt
'	on error resume next

	call WB.ExecWB(6,1)
'6,2 gives no alert

    if err.number <> 0 then
         if DA then ' Internet Explorer 4 they probably cancelled
                     alert "Nothing Printed :" & err.number & " : " & err.description
         else
             handle_error '  ie3x give alternate instructions
         end if
    end if
end function

document.write  "<OBJECT ID=""WB"" WIDTH=0 HEIGHT=0 CLASSID=""CLSID:8856F961-340A-11D0-A96B-00C04FD705A2""> </OBJECT>"

VBS = true
*/

/* The actual print function */

/*
function prePrint()
{
	if (window.print) window.print();
	else if (VBS) printIt();
	else alert('This script does not work in your browser');
}
*/
