function TeaserMouseOver(text) {
   text.style.textDecoration = "none";
   text.style.cursor = "pointer";
}

function TeaserMouseOut(text) {
   text.style.textDecoration = "none"; 
}

function GotoUrl(url) {
   window.location.href = url;
}
