// Verlinkung fuer Blockelemente
function blockMouseover(text)
{
   text.style.textDecoration='underline';
   text.style.cursor='pointer';
}

function blockMouseout(text)
{
   text.style.textDecoration='none';
}

function openUrl(url)
{
   top.location.href=url;
}
