/****************************************************************
  JavaScript make printable document

  Copyright 2007 Enkh-Amgalan Baatarjav. All rights reserved.
  Feel free to use this script on your website.

 ****************************************************************/

function makePrintable () {
	//alert ("inside makepritable");
	this.addPageTitle = addTitle;
	this.addPageContent = addContent;
	this.pageTitle;
	this.printContent;
	this.testing = testAll;
	this.allTogether = allContent;
}

function addTitle (title) {	
	//alert ("add title");
	this.pageTitle = title;		
}

function addContent (contentName) {	
	//alert ("add content "+contentName);
	this.printContent = "<td class='bottomThick'><p>"+String (document.getElementById(contentName).innerHTML)+"</p><br/></td>";	
}

function testAll () {
	var temp = this.pageTitle+this.pageContent;
	return temp;
}

function allContent() {

	var pageContent = "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN''http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />";
	pageContent += "<title>"+this.pageTitle+"</title>";
	pageContent += "<link rel='stylesheet' type='text/css' href='include/css/printable.css' /><link href='include/css/calendar.css' rel='stylesheet' type='text/css' /></head><body><table class='printTable'><tr><td class='bottomThick'><img src='include/webImage/banner2.jpg' width='100%' height='203' /></td></tr><tr><td height='20' class='iconPosition'><img onclick='window.print()' class='printerIcon' src='include/webImage/printer_icon.png' width='17' height='17' /> <span onclick='window.print()' class='printText'>Print</span></td></tr><tr>";
	pageContent += this.printContent;
	pageContent += "</tr><tr><td><p class='copyright'>Copyright &copy; 2007 by the Lone Star Community STC. All rights reserved.</p></td></tr></table></body></html>";	

	return pageContent;
}
