set theDate to current date set theYear to year of theDate as string set theTwoDigitsYear to item 3 of theYear & item 4 of theYear set StoreMonth to month of theDate if StoreMonth = January then set theMonth to 1 else if StoreMonth = February then set theMonth to 2 else if StoreMonth = March then set theMonth to 3 else if StoreMonth = April then set theMonth to 4 else if StoreMonth = May then set theMonth to 5 else if StoreMonth = June then set theMonth to 6 else if StoreMonth = July then set theMonth to 7 else if StoreMonth = August then set theMonth to 8 else if StoreMonth = September then set theMonth to 9 else if StoreMonth = October then set theMonth to 10 else if StoreMonth = November then set theMonth to 11 else if StoreMonth = December then set theMonth to 12 end if if theMonth < 10 then set theTwoDigitsMonth to "0" & (theMonth as string) else set theTwoDigitsMonth to theMonth as string end if set theMonth to theMonth as string set theDay to day of theDate if theDay < 10 then set theTwoDigitsDay to "0" & (theDay as string) else set theTwoDigitsDay to theDay as string end if set theDay to theDay as string set theTag to "" & return & "
" & return & "

" & theYear & "”N" & theMonth & "ŒŽ" & theDay & "“ú

" & return & "

" & return & "
" & return & "
" & return & "

12:33

" & return & "
" & return & "" set the clipboard to theTag