Need help with calc. a future date. Right now I have it where it calc.
25 days in the future. But need 25 working days in the
future.form1.Page1.Button1::click - (JavaScript, client)var oNow = new
Date();// add 25 days and make new date objectoNow = new
Date(oNow.getFullYear(), oNow.getMonth(), (oNow.getDate() + 25) )//
dispaly new date informationsMsg = "In 25 days it will be " +
util.printd("mm/dd/yyyy", oNow);sMsg += "\n" + "The day of the week will
be " + util.printd("dddd", oNow);app.alert(...