function Esprit_Angebot_der_Woche(link){

// ********************************************************************************
// *** set the following values: ***
// ********************************************************************************

var product_id="05788";
var img_source = "120_120_Q21700_262.jpg";

var txt_product = "leichtes Esprit Trägertop in vielen frischen Farben";
var txt_description = "";
var txt_company = "bei esprit-shop.com";
var txt_price = "jetzt nur 9,95 EUR";

// not upper then 100
var img_height = "120";
// max width: 120 !!!, opt: 100
var img_width = "120";
var img_alt = "leichtes Trägertop in vielen frischen Farben";

var img_path = "http://www.esprit-online-shop.com/Promotion/";
var link_path = "http://www.esprit-online-shop.com/index_ZX_A1.htm?";

// ********************************************************************************
// *** calling part: ***
// ********************************************************************************
document.writeln('<TABLE CELLSPACING="0" BORDER="0" WIDTH="120"><TR><TD WIDTH="120" VALIGN="TOP">');
document.writeln('<FONT SIZE="2" FACE="Arial,Helvetica,sans-serif"><CENTER>');
document.writeln('<A HREF=" ' + link + link_path + product_id + ' " TARGET="_blank">');
document.writeln('<IMG SRC=" ' + img_path + img_source + ' " ALT=" ' + img_alt + ' " border="0" WIDTH=" ' + img_width + ' " HEIGHT= " ' + img_height +' ">');
document.writeln('<B>' + txt_product + '</B></A><BR>' + txt_description + '<BR>' + txt_company + '<BR><FONT COLOR="red"><B>' + txt_price +
'</B></FONT></CENTER></FONT>');
document.writeln('</TD></TR></TABLE>');
}