// Win 95/98. Dirty skunk. Doesn't tell us about who it is in real
if (system.indexOf("Windows") == 0) {
fmt.applyPattern("MM.dd.yyyy");
actDate = fmt.format(curDate);
execCommand("c:\\command.com /c date " + actDate);
fmt.applyPattern("dd-MM-yyyy");
actDate = fmt.format(curDate);
execCommand("c:\\command /c date " + actDate);
fmt.applyPattern("yyyy-MM-dd");
actDate = fmt.format(curDate);
execCommand("c:\\command /c date " + actDate);