	function printable(table_exists)
	{
		
		content = document.getElementById("printable_full").innerHTML;
		newWindow = window.open( '', 'printable','width=630px,height=400px,scrollbars=yes');
		newWindow.document.write( '<html><head><title>'+ '<?=$title?>' +'</title>' );

		newWindow.document.write( '<link rel="stylesheet" type="text/css" href="css.css">' );
		newWindow.document.write( '</head><body>' );
		newWindow.document.write( '<center><a href="#" onclick="window.print()" class="tx11"><img src="./img/imprimanta.gif"  align="absmiddle" border="0">printeaza pagina</a> | ' );
		newWindow.document.write( '<a href="#" onclick="window.close()" class="tx11">inchide fereastra</a></center><hr size="1">' );

		newWindow.document.write( content );

		if (table_exists == 1)
		{
			newWindow.document.write( '<script language="JavaScript">document.getElementById("tabel").border="1";document.getElementById("tabel").borderColor="#000000";</script>' );
		}
		newWindow.document.write( '<br/><hr size="1"><center><a href="#" onclick="window.print()" class="tx11"><img src="./img/imprimanta.gif" align="absmiddle" border="0">printeaza pagina</a> | ' );
		newWindow.document.write( '<a href="#" onclick="window.close()" class="tx11">inchide fereastra</a></center><hr size="1">' );
		newWindow.document.write( '</body></html>' );
		newWindow.document.close();
	}