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</HE>\n<BODY><div style="margin:5px;">\n';

		var printReadyElem = document.getElementById("printReady");

		if (printReadyElem != null){
			html += printReadyElem.innerHTML;
		}else{
			alert("Could not find the printReady function");
			return;
		}

		html += '\n</div></BO>\n</HT>';

		var printWin = window.open("","printSpecial","height=400,width=588");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		printWin.print();
	}
}
