// ................................................................................................
// REMINDER 
// °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°

// :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
// COSTRUZIONE E SCRITTURA REMINDER
// :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
function writeReminder(){
	var wR = ''
	wR += '<FORM name=theReminder>'
	wR += '<TABLE width=170 cellPadding=0 cellSpacing=0 border=0>'
	wR += '<TR>'
	wR += '<TD COLSPAN=6><IMG src="imgs/09_02_bag_eng.gif" width=147 height=29 border=0></TD>'
	wR += '</TR>'
	for (i=1;i<=counter;i++){
		wR += '<TR>'
		wR += '<TD width=9>&nbsp;</TD>'
		wR += '<TD width=1 bgcolor=#7c9c76><IMG src="imgs/00_00_px.gif" width=1 height=19 border=0></TD>'
		wR += '<TD width=26 bgcolor=#ebefbd align=center valign=top><FONT face="arial,sans-serif" size=1>' +iQuantity[i]+ '<BR></FONT></TD>'
		wR += '<TD width=110 bgcolor=#ebefbd valign=top><FONT face="arial,sans-serif" size=1>' +iName[i]+ ' &gt;<A class=reminder href="javascript:clearIt('+i+')">Remove</A>&nbsp;<BR></FONT><IMG src="imgs/00_00_px.gif" width=1 height=5 border=0></TD>'
		wR += '<TD width=1 bgcolor=#7c9c76><IMG src="imgs/00_00_px.gif" width=1 height=19 border=0></TD>'
		wR += '<TD width=23>&nbsp;</TD>'
		wR += '</TR>'
	}
	wR += '<TR>'
	wR += '<TD COLSPAN=6><A href="eng_proceduradiacquisto.html"><IMG src="imgs/09_06_bag_eng.gif" width=147 height=18 border=0 alt="Details and Order"></A></TD>'
	wR += '</TR>'
	wR += '</TABLE>'
	wR += '</FORM>'
	document.write(wR);
	document.close();
}

function writeEmptyReminder(){
	var wR = ''
	wR += '<TABLE width=170 cellPadding=0 cellSpacing=0 border=0>'
	wR += '<TR>'
	wR += '<TD COLSPAN=6><IMG src="imgs/09_02_bag_eng.gif" width=147 height=29 border=0></TD>'
	wR += '</TR>'

	wR += '<TR>'
	wR += '<TD width=9>&nbsp;</TD>'
	wR += '<TD width=1 bgcolor=#7c9c76><IMG src="imgs/00_00_px.gif" width=1 height=19 border=0></TD>'
	wR += '<TD width=6 bgcolor=#ebefbd><IMG src="imgs/00_00_px.gif" width=1 height=1 border=0></TD>'


	// da RIABILITARE quando verrà attivato il servizio in inglese
	wR += '<TD width=130 bgcolor=#ebefbd><IMG src="imgs/00_00_px.gif" width=130 height=2 border=0><BR><FONT face="arial,sans-serif" size=1 color=#0d6846>For your shopping on-line go to the single products pages, choose quantities and add them to your Shopping List. They will appear in this area from there you\'ll can send your order.<BR></FONT></TD>'


	wR += '<TD width=1 bgcolor=#7c9c76><IMG src="imgs/00_00_px.gif" width=1 height=19 border=0></TD>'
	wR += '<TD width=23>&nbsp;</TD>'
	wR += '</TR>'

	wR += '<TR>'
	wR += '<TD COLSPAN=6><IMG src="imgs/09_07_bag.gif" width=147 height=18 border=0></TD>'
	wR += '</TR>'
	wR += '</TABLE>'
	document.write(wR);
	document.close();
}

// da ELIMINARE quando verrà attivato il servizio in inglese
function writePROVVISORIOReminder(){
	var wR = ''
	wR += '<TABLE width=170 cellPadding=0 cellSpacing=0 border=0>'
	wR += '<TR>'
	wR += '<TD COLSPAN=6><IMG src="imgs/09_02_bag_eng.gif" width=147 height=29 border=0></TD>'
	wR += '</TR>'

	wR += '<TR>'
	wR += '<TD width=9>&nbsp;</TD>'
	wR += '<TD width=1 bgcolor=#7c9c76><IMG src="imgs/00_00_px.gif" width=1 height=19 border=0></TD>'
	wR += '<TD width=6 bgcolor=#ebefbd><IMG src="imgs/00_00_px.gif" width=1 height=1 border=0></TD>'


	wR += '<TD width=130 bgcolor=#ebefbd><IMG src="imgs/00_00_px.gif" width=130 height=2 border=0><BR><FONT face="arial,sans-serif" size=1 color=#c03333><!-- #0d6846 -->Sale on line for country different from Italy is<BR> under construction<BR></FONT></TD>'


	wR += '<TD width=1 bgcolor=#7c9c76><IMG src="imgs/00_00_px.gif" width=1 height=19 border=0></TD>'
	wR += '<TD width=23>&nbsp;</TD>'
	wR += '</TR>'

	wR += '<TR>'
	wR += '<TD COLSPAN=6><IMG src="imgs/09_07_bag.gif" width=147 height=18 border=0></TD>'
	wR += '</TR>'
	wR += '</TABLE>'
	document.write(wR);
	document.close();
}

