/*
НЕОБХОДИМО:
	Указать в CSS:
		#bBack { display: none; }
	А в CSS страницы "Предварительного просмотра":
		#bPreview { display: none; }
	В обоих CSS установить:
		@media print {
		#printing { display: none !important; }
		}
	Прописать в документе:
	<script type="text/javascript" src="/print.php"></script> или
	<script type="text/javascript" src="/print.php?en"></script>
*/

document.write("<p id=printing>");
document.write("<a href=#printing id=bPrint onClick='window.print();return false;'>Печать</a>");
document.write("<a href=#printing id=bPreview onClick='Prev();return false;' title='Как это будет выглядеть на бумаге...'>Предварительный просмотр</a>");
document.write("<a href=#printing id=bBack onClick='GoBack();return false;' title='Вернуться к обычному просмотру сайта'>Вернуться</a>");
document.write("</p>");

function GoBack() {
	newurl = document.URL.replace('?print','');
	location = newurl;
//	history.go(-1);
	}

function Prev() {
	location = document.URL + "?print";
	}
