Thanks so much for your help Dan. You are awesome! Still no luck tho.
I've tried another approach and had some success. I've hacked my tooltip template to make it appear to do the same thing. The only problem I have with that script (which has always been a problem) is that if you have an event or event description with the single quote character --> ' <--
Then it will break the popup for that event.
For example, if your event title is:
"It's your birthday!"
It will not show the popup because of the single quote used in the word "it's". However, if I just made the event description
"Its your birthday!"
Then it would work fine.
This is obviously because of the onMouseover event which looks something like this:
ONMOUSEOVER="popup('It's your birthday')";
So obviously, when the event with a single quote is put into the mouseover event, it breaks it.
So I guess I have a question. Is there a way to tell the script to ignore any single quotes within the event? Or a method that I could use to get it to work if an evnt has that character? I know I could go through all my events and just make sure I don't add any single quotes, but that sort of sucks.
------------------