/* Hier worden de global navigation items toegevoegd aan de footer navigation */
/*addFooterNavigationItem(NAVIGATION_FOOTER_ITEM, "Reviews and awards", "/pc/tnt/reviews_awards.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%\"><IMG src=\"/pc/navigation/pixel.gif\" width=\"1\"></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 2002\" width=\"196\" height=\"19\" border=\"0\"></A></TD>";
				text += "<TD class=\"globlegalbar\" width=\"50%\" align=\"right\"><A href=\"http://www.pc.toshiba.it/cgi-bin/ToshibaCSG/contact_toshiba.jsp\"><IMG src=\"/pc/navigation/bottom/images/button_su_toshiba_it.gif\" alt=\"Su Toshiba\" width=\"75\" height=\"19\" border=\"0\"></A>";
				text += "<a href=\"#\" onMouseDown=\"openBrWindow('http://computers.toshiba-europe.com/cgi-bin/ToshibaCSG/contact_toshiba.jsp ','contactcentre','width=790,height=420')\"><IMG src=\"/pc/navigation/bottom/images/button_come_contattarci_it.gif\" alt=\"Come contattarci\" width=\"104\" height=\"19\" border=\"0\"></A></TD>";
			text += "</TR>";
		text += "</TABLE>";
	
	return text;
}

function getBottomHTML() {
	var text = "";
	text += getTopFooterHTML();
	//text += getFooterNavigationHTML();
	text += getLegalFooterHTML();
	
	return text;
}

function openBrWindow(theURL,winName,features) {
 			 window.open(theURL,winName,features);}