Forum Moderators: open
<script type="text/vbscript">
Sub ShowDetails(type, subject, location, start, end, body)
Dim str
str = "Subject:\t" & subject
str = str & "\nTime:\t\t" & start & " - " & end
str = str & "\nLocation:\t" & location
If body!= "" Then
str = str & "\n\n" & body
End If
If type = "" Then
type = DHA_Portal_Title
End If
MsgBox str, 64, type
End Sub
</script>