// +----------------------------------------------------------------+
// | This script will print what's inside of <div id="printReady">  |
// +----------------------------------------------------------------+

//use:
//<a href="javascript:void(printSpecial())">Print this Page</a>
//<form id="printMe" name="printMe">  <input type="button" name="printMe" onClick="printSpecial()" value="Print this Page"> </form>


var gAutoPrint = true; // Tells whether to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<html>\n<head>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
			html += headTags[0].innerHTML;
		}

		html += '\n</head>\n<body>\n';

		var printReadyElem = document.getElementById("printReady");

		if (printReadyElem != null)
		{
			html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady function");
			return;
		}

		html += '\n</body>\n</html>';

		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
		else
		{
			alert("The print ready feature is only available if you are using an browser. Please update your browswer.");
		}
}
