﻿// JScript File
function printit(print_what){
				var msgWindow;
				var print_tag = "div";
				msgWindow=window.open("","Printer_Friendly","","width=75,height=200");
				msgWindow.document.write("<html><head><title>Printer Friendly</title></head>");
				// msgWindow.document.write("<scri" + "pt language='JavaScript' src='js/sortTable.js'></scri" + "pt>");
				// msgWindow.document.write("<scri" + "pt language='JavaScript' src='js/toolTip.js'></scri" + "pt>");
				msgWindow.document.write("<link rel='stylesheet' href='css/sbdc.css' type='text/css'>");
				msgWindow.document.write("<body onload='window.print()'>");
				msgWindow.document.write("<table border=0 width=100%><tr><td align=left><a href='#' onClick='window.print();return false;'>Print Window</a></td>");
				msgWindow.document.write("<td align=right><a href='#' onClick='window.close();return false;'>Close Window</a></td></tr></table><br>");
				msgWindow.document.write(document.getElementById(print_what).innerHTML);
				msgWindow.document.write("</body></html>");
				msgWindow.document.close();
				
		} //end of function print_it
		
		
