/* Hier worden de global navigation items toegevoegd aan de footer navigation */
//addFooterNavigationItem(NAVIGATION_FOOTER_ITEM, "Reviews and awards", "/computers/tnt/reviews_awards.htm");
//addFooterNavigationItem(NAVIGATION_FOOTER_ITEM, "Technology trends", "/computers/tnt/technology_trends/index.htm");
//addFooterNavigationItem(NAVIGATION_FOOTER_ITEM, "Business trends", "/computers/tnt/business_trends/index.htm");
/* The first part of the footer, black bar */
function getTopFooterHTML() {
	var text = "";
	text += "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">";
		text += "<TR valign=\"top\">";
			text += "<TD class=\"globfooterbar\" valign=\"top\">";
				text += "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
					text += "<TR>";
							text += "<TD width=\"160\"><IMG src=\"/pc/navigation/pixel.gif\" width=\"160\" height=\"19\"></TD>";
						text += "<TD class=\"globseparator\"><IMG src=\"/pc/navigation/pixel.gif\" width=\"1\"></TD>";
					text += "</TR>";
				text += "</TABLE>";
			text += "</TD>";
	text += "<TD class=\"globfooterbar\" align=\"left\" width=\"100%\"><A href=\"/pc/tnt/index.htm\"><IMG border=\"0\" width=\"119\" height=\"19\" src=\"/pc/navigation/bottom/images/button_trend_tecnologica_it.gif\"></A></TD>";
			text += "<TD class=\"globfooterbar\" align=\"right\" width=\"100%\"><A href=\"#top\"><IMG border=\"0\" width=\"82\" height=\"19\" src=\"/pc/navigation/bottom/images/button_toma_in_alto_it.gif\"></A></TD>";
		text += "</TR>";
	text += "</TABLE>";

	return text;
}

/* The last part of the footer, the grey bar */
function getLegalFooterHTML() {
	var text = "";
		text += "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">";
			text += "<TR valign=\"top\">";
				text += "<TD class=\"globlegalbar\" width=\"50%\"><A href=\"http://www.toshiba.it/legal/index.html\"><IMG src=\"/pc/navigation/bottom/images/button_termi_condizioni_it.gif\" alt=\"&copy; Toshiba 2001\" width=\"196\" height=\"19\" border=\"0\"></A></TD>";
					text += "<TD class=\"globlegalbar\" width=\"50%\" align=\"right\"><A href=\"/pc/su/index.htm\"><IMG src=\"/pc/navigation/bottom/images/button_su_toshiba_it.gif\" alt=\"Su Toshiba\" width=\"75\" height=\"19\" border=\"0\"></A>";
				text += "<A href=\"http://www.toshiba-europe.com/cgi-bin/eu/redirect.cgi?lang=italian&page=contact&country=italy\"><IMG src=\"/pc/navigation/bottom/images/button_come_contattarci_it.gif\" alt=\"Come contattarci\" width=\"101\" height=\"19\" border=\"0\"></A></TD>";
			text += "</TR>";
		text += "<td align=\"left\" valign=\"top\"><a href=\"http://www.microsoft.com/piracy/howtotell\" target=\"_blank\"><img src=\"/pc/prodotti/windows/microsoft_genuinewindows.gif\" width=\"400\" height=\"48\" border=\"0\"></a></td></table>";
	return text;
}

function getBottomHTML() {
	var text = "";
	text += getTopFooterHTML();
	//text += getFooterNavigationHTML();
	text += getLegalFooterHTML();
	
	return text;
}