And I see this chunk of code:
Code:
...
var Dateformat = "mm/dd/yyyy";
var Initials= "EM";
}
but (a) it's not valid code, because it ends with } but you don't show the matching {
and (b) you never use the variable
Initials any place else in the code.
Why create the variable if you don't use it?