function iEyecatcher() {
  
}

iEyecatcher.title = '';
iEyecatcher.subtitle = '';
iEyecatcher.linkUrl = '';
 
iEyecatcher.title = 'Sonderfonds Energieeffizienz';

iEyecatcher.subtitle = 'in kleinen und mittleren Unternehmen\r\nwww.energieeffizienz-beratung.de;\r\nwww.kfw-beraterboerse.de;\r\nwww.effnet.rlp.de';


iEyecatcher.getHTML = function () {
  var html = '';  
  if (! iEyecatcher.title) {
    return html;
  }
  html += '<div class="eyecatcher-line-top"></div>';
  html += '<div class="eyecatcher-content">';
  html += '<p class="eyecatcher-head"><marquee>+++ AKTUELL +++ AKTUELL +++ AKTUELL +++</marquee></p>';
  if (iEyecatcher.linkUrl) {
    html += '<a href="'+ iEyecatcher.linkUrl +'" onclick="Ttal.nav_click(this); openWindow(this.href); return false;" target="_blank" class="eyecatcher-title">';
  }
  html += iEyecatcher.title;
  if (iEyecatcher.linkUrl) {
    html += '</a>';
  } else {
    html += '<br />';
  }
  if (iEyecatcher.linkUrl) {
    html += '<a href="'+ iEyecatcher.linkUrl +'" onclick="Ttal.nav_click(this); openWindow(this.href); return false;" target="_blank" class="eyecatcher-subtitle">';
  }
  html += iEyecatcher.subtitle;
  if (iEyecatcher.linkUrl) {
    html += '</a>';
  }
  html += '</div>';
  html += '<div class="eyecatcher-line-bottom"></div>';
  return html;
}