What styles are applied to that link (".style5")? Could be a large line height?
And also please do not ever use
href="javascript: …" again. This is forbidden! A proper link with event handler looks like this:
Code:
<a href="showanevent.asp?date=6/29/2007" onclick="loadpopunder('showanevent.asp?date=6/29/2007'); return false;" class="style5">this is a long test and even longer</a>
This ensures that people with JS disabled will still get a result (i.e. be able to get to the link target), plus there is no protocol called
javascript:. I don’t know who invented this but it’s just useless and wrong and everybody will confirm that.