// JavaScript Document
function openLT(str){
OpenWindow=window.open("", "newwin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=300, height=300");
OpenWindow.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1257\"/>");
OpenWindow.document.write("<title>Lietuvi&scaron;kai</title><link href='/css/style.css' rel='stylesheet' type='text/css' /><style>div#texts{overflow:visible;}</style></head>");
OpenWindow.document.write("<body id='pop'>");
OpenWindow.document.write(str);
OpenWindow.document.write("</body></html>");
}
function openEN(str){
OpenWindow=window.open("", "newwin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=300, height=300");
OpenWindow.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>");
OpenWindow.document.write("<title>English</title><link href='/css/style.css' rel='stylesheet' type='text/css' /><style>div#texts{overflow:visible;}</style></head>");
OpenWindow.document.write("<body id='pop'>");
OpenWindow.document.write(str);
OpenWindow.document.write("</body></html>");
}

function openRU(str){
OpenWindow=window.open("", "newwin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=300, height=300");
OpenWindow.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\"/>");
OpenWindow.document.write("<title>&#1055;&#1086;-&#1088;&#1091;&#1089;&#1089;&#1082;&#1080;</title><link href='/css/style.css' rel='stylesheet' type='text/css' /><style>div#texts{overflow:visible;}</style></head>");
OpenWindow.document.write("<body id='pop'>");
OpenWindow.document.write(str);
OpenWindow.document.write("</body></html>");
}