function printSpecial() {
	if (document.getElementById != null) {
		var html = '<HTML>\n<HEAD>\n';

		html += '<meta http-equiv="pragma" content="no-cache">\n'
		html += '<link rel="shortcut icon" href="/favicon.ico">\n'
		html += '<title>TOB-Info.net - Your home for TOB and TIA Scores and Information</title>\n'
		html += '<link rel="STYLESHEET" type="text/css" href="/stylesheet.css">\n'
			
		var printReadyElem = document.getElementById("printReady");
		html += '<BODY>\n'	
		if (printReadyElem != null){
			html += printReadyElem.innerHTML;
		}
		else {
			alert("Unable to build printable document from this page");
			return;
	    }
			
		html += '\n</BODY>\n</HTML>';
		
		var printWin = window.open("","_blank");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		printWin.print();
	}	
	else{
		alert("The print function requires JavaScript");
	}
}

function printPage(strURL) {
	if (document.getElementById != null) {
		var printWin = window.open(strURL, "");
		//printWin.document.open()
		//printWin.document.append(" ");
		//printWin.document.close();
		//printWin.print();
	} 
	else {
		alert("The print function requires JavaScript");	
	}
}


