 function euroelettrica_ProductOfTheWeek(link)
 {
 // ********************************************************************************
 // *** set the following values: ***
 // ********************************************************************************
 var product_id = "77794";

 var txt_product = "CLIMATIZZATORE MONOSPLIT DIFFUSIONE 12.5 HP HE OLIMPIA SPLENDID";
 var txt_description = "Climatizzatore monosplit con pompa di calore. Classe A di efficienza energetica. ...";
 var txt_company = " Disponibile su Euroelettrica ";
 var txt_price = " 350.00 EUR ";

 var img_source = "splendid_diffusione125_60.jpg";
 // not upper then 100
 var img_height = "60";
 // max width: 120 !!!, opt: 100
 var img_width = "60";
 var img_alt = "Disponibile subito!";

 var img_path = "http://www.euroelettrica.it/pic_prod/";

 // ********************************************************************************
 // *** calling part: ***
 // ********************************************************************************
 var p_url = link + product_id;

 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=" ' + p_url + ' " TARGET="_blank">');
 document.writeln('<IMG SRC=" ' + img_path + img_source + ' " ALT=" ' + img_alt + ' " border="0" WIDTH=" ' + img_width + ' " HEIGHT= " ' + img_height + ' ">');
 document.writeln('<BR><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>');
 }
