<!-- hide from old browsertoday = new Date()  function CreateArray(n) {this.length = nreturn this }  day = new CreateArray(7)day[0]="S&ouml;ndag"day[1]="M&aring;ndag"day[2]="Tisdag"day[3]="Onsdag"day[4]="Torsdag"day[5]="Fredag"day[6]="L&ouml;rdag"  month = new CreateArray(12)month[0]="januari"month[1]="februari"month[2]="mars"month[3]="april"month[4]="maj"month[5]="juni"month[6]="juli"month[7]="augusti"month[8]="september"month[9]="oktober"month[10]="november"month[11]="december"modifier = new CreateArray(31)var modifier = new String("")var loop = 0do {    modifier[loop] = modifier.substring(loop * 2, 2 + (loop * 2));    loop = loop + 1;} while (loop < 32);myDate = new String(today.getDate())mySuffix = modifier[today.getDate()]myYear = new String(today.getFullYear())// -->