function tim() {
timcode = "<html>"
+ "<head><title>Thanks Tim</title>"
+ "<style>"
+ "body {font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; text-align:justify; text-indent: .3in;}"
+ "</style>"
+ "</head>"
+ "<body>"
+ "Thank you to a Mr. Tim O'Malley from the Charleston Symphony for coming to Wando High School and helping the Cello section pratice and for giving us the help we need."
+ "</body>"
+ "</html>"

var timwin=window.open("","tim","width=350,height=100")
timwin.document.open()
timwin.focus()
timwin.document.write(timcode);
}
