
// ADD THIS
var addthis_exclude;

function showAddThis(excludes, isEmail)
{
    alert("huhu");
    addthis_exclude = excludes;
	addthis_open(document.body, (isEmail ? 'email' : 'more'), 'http://www.honda-at-geneva.com/', 'Honda at the Geneva Motor Show 2012');
    this.focus();
}


// BROCHURE
function showText(content,chapterID,chapterSyn)
{

	var htmlPreTag_1 = 	"<html><head><title>";
	var titleText	=	Honda at Geneva - " + chapterSyn  + " " + chapterID;
						
	var htmlPreTag_2 = 	"</title>" +
						"<link rel='stylesheet' type='text/css' href='./src/css/opentext.css'/>" +
						"</head><body>"+
						"<div id='honda'>";
	
	var htmlEndTag = "</div></body></html>";
	
  	var showText = htmlPreTag_1 + titleText + htmlPreTag_2 + content + htmlEndTag;
	
	textContainer = window.open();
	
	textContainer.document.write(showText);
	textContainer.document.close()
	textContainer.focus();
		
}

 

