// JavaScript Document


function showText(content,chapterID,chapterSyn)
{

	var htmlPreTag_1 = 	"<html><head><title>";
	var titleText	=	"Honda FCX - " + chapterSyn  + " " + chapterID;
						
	var htmlPreTag_2 = 	"</title>" +
						"<link rel='stylesheet' type='text/css' href='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();
	
	
}

function invokeDownload(zipFileName)
{
	location.href="/download.php?a=" + zipFileName;
	
}

function invokeDownloadSingle(zipFileName)
{
	location.href="/download_single.php?a=" + zipFileName;
	
}
