var print_window = null;

function openPrintVersion()
{
	print_window = window.open(window.location);
	
	addEvent(print_window, "load", print_window_onload);
}

function print_window_onload()
{
	var is_rus = 1;
	
	if(/^\/en\//i.test(print_window.location.pathname) || /^\/production\/cn\//i.test(print_window.location.pathname))
	{
		is_rus = 0;	
	}
	
	print_window.document.title = (is_rus ? "Версия для печати: " : "Print version: ") + print_window.document.title;
	
	if(print_window.document.getElementById("print_css"))
		print_window.document.getElementById("print_css").href = "/_css/print2.css";
		
	if(print_window.document.getElementById("print_version_link"))
		print_window.document.getElementById("print_version_link").style.display = "none";
		
	if(print_window.document.getElementById("logo") && print_window.document.getElementById("logo").getElementsByTagName("img")[0])
	{
		print_window.document.getElementById("logo").getElementsByTagName("img")[0].src = "/_i/logo_print_version" + (is_rus ? "" : "_eng") + ".gif";
	}
		
	if(print_window.document.getElementById("top_column"))
	{
		var div_closer = print_window.document.createElement("div");
		
		div_closer.id = "div_closer";
		
		div_closer.innerHTML = "<div><a href=\"\" onclick=\"window.close();\"><img src=\"/_i/icons/close.gif\" align=\"absmiddle\" style=\"margin-right: 7px;\" /></a><a href=\"\" onclick=\"window.close();\" class=\"text-blue invert\"><b>" + (is_rus ? "Закрыть&nbsp;окно" : "Close&nbsp;window") + "</b></a></div><div class=\"spacer\"></div>";
		
		print_window.document.getElementById("top_column").appendChild(div_closer);
	}
}




