function print_window(){
  var sPrintable = document.getElementById('printable').innerHTML;
	var win = window.open("","printable_window","width=650,height=650,scrollbars=1,resizable=1");

	var text = sPrintable;
	
	var html = '<html><head><link rel="stylesheet" type="text/css" href="../styles/artizan.css"><style>td{ background-color:#FFFFFF;}</style>' + 
	  '<script type="text/javascript"> function print_window(){ window.print(); } </script></head>'+
		'<body style="background-color:#FFFFFF; background-image:url(../images/clear.gif);"><br/>' + text;
	html += "</body></html>";
	
	//variable name of window must be included for all three of the following methods so that
	//javascript knows not to write the string to this window, but instead to the new window
	
	win.document.open();
	win.document.write(html);
	win.print();
	win.document.close();
}
