    function create_box(id,preis,breite,hl,cnt,ftr,url,url_text) {
      headline = '<div class="fbox_headline" style="margin-top:2px;">'+hl+'</div>';
      content = '<div class="fbox_content">'+cnt+'<span style="font-size:30px; font-weight:bold; color:#f12a40;">'+preis+' EUR</span></div>';
      footer = '<div class="fbox_footer">'+ftr+'<a href="'+url+'" style="text-decoration:underline; color:#1c4a90;">'+url_text+'</a></div>';
      left = '<div style="float:left; width:5px; height:99px; background-image:url(http://www.firstway.de/templates/firstway/img/left.jpg); background-repeat:no-repeat;"></div>';
      center = '<div style="float:left; width:'+(breite-10)+'px; height:99px; background-image:url(http://www.firstway.de/templates/firstway/img/center.jpg); background-repeat:repeat-x;">';
      center += headline;
      center += content;
      center += footer;
      center += '</div>';
      right = '<div style="float:left; width:5px; height:99px; background-image:url(http://www.firstway.de/templates/firstway/img/right.jpg); background-repeat:no-repeat;"></div>';
      
      
      
      gesamt = '<div style="text-align:center; width:'+breite+'px;">'+left+center+right+'</div><div style="clear:both;"></div>';
      
      document.getElementById('fbox_'+id).style.width = breite+'px';
      document.getElementById('fbox_'+id).style.height = '99px';
      document.getElementById('fbox_'+id).innerHTML = gesamt;
    }