ПРОЕКТ "ПОЛЯНА"


 
Алексей Андрюнин

JavaScript source

<HTML>
<HEAD>

<META http-equiv="Content-Type" content="text/html; charset=windows-1251">
<META name="Copyright" content="&copy; 2001 Alexei V. Andriounine">

<TITLE>Руководство пользователя Models для DOS</TITLE>

<LINK href="m_4dos.css" rel="stylesheet" type="text/css">

<SCRIPT>
<!--

//*************************** Переменные ***************************

var CurrentImage; // Текущее выбранное изображение
var CurrentLink; // Текущая выбранная ссылка
var CurrentGroup; // Текущая группа дочерних элементов первого уровня
var NormalRowBg="white"; // Цвет невыделенной строки таблицы
var HighlightedRowBg="#DDEEFF"; // Цвет выделенной строки таблицы
var SelMenuItemBg="#0A246A"; // Цвет выбранного элемента меню
var UnSelMenuItemBg="#D4D0C8"; // Цвет невыбранного элемента меню
var IEVersion // Версия Internet Explorer

//******************************************************************
//* Функция подготавливает массивы для хранения замещаемых *
//* изображений. *
//******************************************************************
function PreloadImages()
{
ExpandedImg = new Image();
NotExpandedImg = new Image();
TxtImg = new Image();

ExpandedImg.src = "../images/list_opn.gif";
NotExpandedImg.src = "../images/list_cls.gif";
TxtImg.src = "../images/list_txt.gif";
}
//******************************************************************
//* функция открывает страницу, указанную в CurrentLink, в правом *
//* фрейме. *
//******************************************************************
function FollowCurLink()
{
if (CurrentLink != '')
parent.frames[2].location.href = CurrentLink;
}
//******************************************************************
//* функция устанавливает значения CurrentImage и CurrentLink. *
//******************************************************************
function SetCurData(CurImg, CurLnk)
{
CurrentImage = CurImg;
CurrentLink = CurLnk;
}
//******************************************************************
//* функция сворачивает или разворачивает список. *
//******************************************************************
function CheckExpand()
{
if (event.srcElement.tagName == "AREA")
CurId = CurrentImage.parentElement.parentElement.id;
else
CurId = event.srcElement.parentElement.parentElement.id;

CurIdLen = CurId.length + 2;

CurrentImage.src == ExpandedImg.src?Expanded=1:Expanded=0;

NumItems = document.all.tags("TR").length;

if (Expanded)
{
CurId = CurId + "_";

for (i=0; i<NumItems; i++)
{
CurItem = document.all.tags("TR")[i];
if (CurItem.id.indexOf(CurId) == 0)
CurItem.style.display = "none";
}

CurrentImage.src = NotExpandedImg.src
}
else
{
for (i=0; i<NumItems; i++)
{
CurItem = document.all.tags("TR")[i];
if ((CurItem.id.length == CurIdLen) && (CurItem.id.indexOf(CurId) == 0))
CurItem.style.display = "";
}

NumItems = document.all.tags("IMG").length;

for (i=0; i<NumItems; i++)
{
CurItem = document.all.tags("IMG")[i];
if (CurItem.src != TxtImg.src)
if ((CurItem.parentElement.parentElement.id.length == CurIdLen) && (CurItem.parentElement.parentElement.id.indexOf(CurId) == 0))
CurItem.src = NotExpandedImg.src;
}

CurrentImage.src = ExpandedImg.src
}
}
//******************************************************************
//* Функция возвращает последнее вхождение разделителя каталога *
//* в строку *
//******************************************************************
function GetLastDelimPos(s)
{
x=s.lastIndexOf('/');
y=s.lastIndexOf('\\');

if (y > x)
return y;
else
return x;
}
//******************************************************************
//* Функция имя файла, путь к которому задан в FPath *
//******************************************************************
function GetFName(FPath)
{
x=GetLastDelimPos(FPath);

if (x == -1)
return FPath;
else
return FPath.substring(x+1, FPath.length);
}
//******************************************************************
//* Функция снимает подсветку с выбранной строки *
//******************************************************************
function DecolorizeLastRow()
{
NumItems = document.all.tags("TR").length;

for (i=0; i<NumItems; i++)
document.all.tags("TR")[i].style.backgroundColor = NormalRowBg;
}
//******************************************************************
//* Функция отображает контекстное меню *
//******************************************************************
function ShowContextMenu()
{
CMenu=document.all.item("ContextMenu", 0);

// В 4-м Explorer'е меню вызывается только по Alt-click, а в 5-м
// еще и по right-click
if (IEVersion > 4)
(((event.button == 1) && (event.altKey)) || (event.button == 2))?(NeedShow = 1):(NeedShow = 0);
else
((event.button == 1) && (event.altKey))?(NeedShow = 1):(NeedShow = 0);

if (NeedShow)
{
if (CMenu.style.visibility == "hidden")
CMenu.style.visibility = "visible";

if ((document.body.clientWidth-event.clientX) >= CMenu.clientWidth)
CMenuLeft = event.clientX;
else
if (document.body.clientWidth > (CMenu.clientWidth + 2))
CMenuLeft = Math.floor((document.body.clientWidth - CMenu.clientWidth)/2);
else
CMenuLeft = 1;

if ((document.body.clientHeight-event.clientY) >= CMenu.clientHeight)
CMenuTop = event.clientY;
else
{
CMenuTop = document.body.clientHeight-CMenu.clientHeight-10;
if (CMenuTop < 0)
CMenuTop = 1;
}

CMenu.style.top = document.body.scrollTop + CMenuTop;
CMenu.style.left = CMenuLeft;

return false;
}
}
//******************************************************************
//* Функция скрывает контекстное меню *
//******************************************************************
function HideContextMenu()
{
if ((document.all.item("ContextMenu", 0).style.visibility == "visible") && (event.clientY < 0))
document.all.item("ContextMenu", 0).style.visibility = "hidden";
}
//******************************************************************
//* Функция выделяет элемент контекстного меню при наведении на *
//* него мыши или снимает выделение, когда мышь выходит из области *
//* элемента. *
//******************************************************************
function SelectCMenuItem(MItemID, Select)
{
if (Select)
{
MItemID.style.backgroundColor=SelMenuItemBg;
MItemID.style.color="white";
}
else
{
MItemID.style.backgroundColor=UnSelMenuItemBg;
MItemID.style.color="black";
}
}
//******************************************************************
//* Функция подсвечивает выбранную строку и убирает контекстное *
//* меню (если оно есть), если щелчок выполнен не на нем. *
//******************************************************************
function ColorizeCurRow()
{
CE=event.srcElement;

// Убираем контекстное меню (если оно есть), если щелчок выполнен не на нем
if ((document.all.item("ContextMenu", 0).style.visibility == "visible") && (!event.altKey))
if (CE.className != "ContextM")
document.all.item("ContextMenu", 0).style.visibility = "hidden";
else
return;

// Подсвечиваем текущую позицию в списке
if ((CE.tagName == "A") || (CE.tagName == "SPAN"))
CR=CE.parentElement.parentElement;
else
if (CE.tagName == "AREA")
{
if (CE.id == "PlusMinus") return;

CR=CurrentImage.parentElement.parentElement;
}
else
return;

DecolorizeLastRow();

CR.style.backgroundColor = HighlightedRowBg;
}
//******************************************************************
//* Функция синхронизирует оглавление со страницей с именем PName *
//******************************************************************
function Sync()
{
if (!window.location.search) return;

PName = GetFName(window.location.search).toUpperCase();

CID = "";

for (i=0; i<document.links.length; i++)
if (GetFName(document.links(i).href).toUpperCase() == PName)
{
CID = document.links(i).parentElement.parentElement.id;
break;
}

if (CID == "") return;

NumItems = document.all.tags("TR").length;
NumImages = document.all.tags("IMG").length;
HaveID = 1;
FirstTime = 1;
FItem = null;

while(HaveID)
{
for (i=0; i<NumItems; i++)
{
CurItem = document.all.tags("TR")[i];

NeedProcess = 0;

if (CurItem.id == CID)
{
if (CurItem.style.display == "none")
NeedProcess = 1;
else
NeedProcess = 3;
if (FirstTime)
{
FirstTime = 0;
FItem=CurItem;
}
}
else
if (CurItem.style.display == "none")
{
if (CurItem.id.indexOf(CID) == 0)
{
S = CurItem.id.substring(CID.length+1, CurItem.id.length);
if (S.indexOf("_") == -1) NeedProcess = 2;
}
}

if (NeedProcess)
{
if (NeedProcess != 3) CurItem.style.display = "";

if (NeedProcess != 2)
{
if (CurItem.children(0).children(0).src != TxtImg.src)
CurItem.children(0).children(0).src = ExpandedImg.src;
}
}
}

CPos = CID.lastIndexOf("_");
if (CPos != -1)
{
CID = CID.substring(0, CPos);
}
else
HaveID = 0;
}

if (FItem)
{
DecolorizeLastRow();
FItem.style.backgroundColor = HighlightedRowBg;
FItem.scrollIntoView(true);
}
}
//******************************************************************
//* Функция прокручивает список наверх к первому элементу с id=L *
//******************************************************************
function GoTop()
{
document.all.item("ContextMenu", 0).style.visibility = "hidden";
L.scrollIntoView(true);
}
//******************************************************************
//* Функция сворачивает весь список *
//******************************************************************
function CollapseAll()
{
document.all.item("ContextMenu", 0).style.visibility = "hidden";

for (i=0; i<document.all.tags("TR").length; i++)
{
CurItem = document.all.tags("TR")[i];
if (CurItem.id != "L") CurItem.style.display = "none";
}

for (i=0; i<document.images.length; i++)
if (document.images[i].src == ExpandedImg.src)
document.images[i].src = NotExpandedImg.src;

GoTop();
}
//******************************************************************
//* Функция разворачивает весь список *
//******************************************************************
function UnwindAll()
{
document.all.item("ContextMenu", 0).style.visibility = "hidden";

for (i=0; i<document.images.length; i++)
if (document.images[i].src == NotExpandedImg.src)
document.images[i].src = ExpandedImg.src;

for (i=0; i<document.all.tags("TR").length; i++)
document.all.tags("TR")[i].style.display = "";
}
//******************************************************************
//* Функция разворачивает список до требуемого уровня * *
//******************************************************************
function UnwindToLevel(DesiredLevel)
{
CollapseAll();

CLen = DesiredLevel*2 + 1;

NumItems = document.all.tags("TR").length;

for (i=0; i<NumItems; i++)
{
CurItem = document.all.tags("TR")[i];
if (CurItem.id.length <= CLen)
{
CurItem.style.display = "";
if (CurItem.id.length < CLen)
if (CurItem.children(0).children(0).src == NotExpandedImg.src)
CurItem.children(0).children(0).src = ExpandedImg.src;
}
}
}
//******************************************************************
//* Функция ничего не делает. Введена для указания в качестве *
//* значения атрибута href ссылок. *
//******************************************************************
function DoNothing()
{
}

//******************** Начальная инициализация *********************

IEVersion = navigator.userAgent.charAt(navigator.userAgent.indexOf("MSIE") + 5);

PreloadImages(); // Инициализируем массивы изображений
document.onclick=ColorizeCurRow; // Устанавливаем обработчик клика
document.onmousedown=ShowContextMenu; // Устанавливаем обработчики для
document.onmouseout=HideContextMenu; // вывода контекстного меню
//-->
</SCRIPT>
</HEAD>

<BODY OnLoad="Sync()" onContextMenu="return false" topmargin="3" leftmargin="3" marginwidth="0" marginheight="0" bgcolor="#FFFFFF">

<!------------------------- Контекстное меню ------------------------->
<DIV id="ContextMenu" class="ContextM" style="visibility: hidden; position: absolute; left: 1; top: 1">
<P id="Item1" class="ContextM" OnClick="GoTop()" OnMouseOver="SelectCMenuItem(Item1, 1)" OnMouseOut="SelectCMenuItem(Item1, 0)">
&nbsp;&nbsp;&nbsp;Наверх&nbsp;
</P>
<HR class="MenuSeparator">
<P id="Item2" class="ContextM" OnClick="CollapseAll()" OnMouseOver="SelectCMenuItem(Item2, 1)" OnMouseOut="SelectCMenuItem(Item2, 0)">
&nbsp;&nbsp;&nbsp;Свернуть&nbsp;все&nbsp;
</P>
<P id="Item3" class="ContextM" OnClick="UnwindAll()" OnMouseOver="SelectCMenuItem(Item3, 1)" OnMouseOut="SelectCMenuItem(Item3, 0)">
&nbsp;&nbsp;&nbsp;Развернуть&nbsp;все&nbsp;
</P>
<HR class="MenuSeparator">
<P id="Item4" class="ContextM" OnClick="UnwindToLevel(1)" OnMouseOver="SelectCMenuItem(Item4, 1)" OnMouseOut="SelectCMenuItem(Item4, 0)">
&nbsp;&nbsp;&nbsp;Уровень&nbsp;1&nbsp;
</P>
<P id="Item5" class="ContextM" OnClick="UnwindToLevel(2)" OnMouseOver="SelectCMenuItem(Item5, 1)" OnMouseOut="SelectCMenuItem(Item5, 0)">
&nbsp;&nbsp;&nbsp;Уровень&nbsp;2&nbsp;
</P>
<P id="Item6" class="ContextM" OnClick="UnwindToLevel(3)" OnMouseOver="SelectCMenuItem(Item6, 1)" OnMouseOut="SelectCMenuItem(Item6, 0)">
&nbsp;&nbsp;&nbsp;Уровень&nbsp;3&nbsp;
</P>
</DIV>

<!------------------------- Раскрывающийся список ------------------------->
<TABLE cellpadding="0" cellspacing="0" border="0" width="100%">
<TR id="L">
<TD nowrap width="100%"><IMG id="I1" onMouseOver="SetCurData(I1, 'default.htm')" usemap="#NodeM" class="Level0" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I1, 'default.htm')" onDblClick="CheckExpand()" class="GuideRootLnk" href="default.htm" target="main" title="Руководство пользователя Models для DOS">Руководство пользователя Models для DOS</A></TD>
</TR>

<!------------------------- История версий программы ------------------------->
<TR id="L_1" style="display:none">
<TD nowrap width="100%"><IMG id="I2" onMouseOver="SetCurData(I2, 'history.htm')" usemap="#TextM" class="Level1" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I2, 'history.htm')" class="ListNode" href="history.htm" target="main" title="История версий программы">История версий программы</A></TD>
</TR>
<!------------------------- Архитектура программы ------------------------->
<TR id="L_2" style="display:none">
<TD nowrap width="100%"><IMG id="I3" onMouseOver="SetCurData(I3, 'architec.htm')" usemap="#TextM" class="Level1" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I3, 'architec.htm')" class="ListNode" href="architec.htm" target="main" title="Архитектура программы">Архитектура программы</A></TD>
</TR>
<!------------------------- Справочник ------------------------->
<TR id="L_3" style="display:none">
<TD nowrap width="100%"><IMG id="I4" onMouseOver="SetCurData(I4, 'comment.htm')" usemap="#NodeM" class="Level1" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I4, 'comment.htm')" onDblClick="CheckExpand()" class="ListNode" href="comment.htm" target="main" title="Справочник">Справочник</A></TD></TR>
<!------------------------- Как пользоваться помощью ------------------------->
<TR id="L_3_1" style="display:none">
<TD nowrap width="100%"><IMG id="I5" onMouseOver="SetCurData(I5, 'topic91.htm')" usemap="#TextM" class="Level2" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I5, 'topic91.htm')" class="ListNode" href="topic91.htm" target="main" title="Как пользоваться помощью">Как пользоваться помощью</A></TD>
</TR>
<!------------------------- О программе ------------------------->
<TR id="L_3_2" style="display:none">
<TD nowrap width="100%"><IMG id="I6" onMouseOver="SetCurData(I6, 'topic90.htm')" usemap="#TextM" class="Level2" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I6, 'topic90.htm')" class="ListNode" href="topic90.htm" target="main" title="О программе">О программе</A></TD>
</TR>
<!------------------------- Таблицы, используемые программой ------------------------->
<TR id="L_3_3" style="display:none">
<TD nowrap width="100%"><IMG id="I7" onMouseOver="SetCurData(I7, 'topic87.htm')" usemap="#TextM" class="Level2" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I7, 'topic87.htm')" class="ListNode" href="topic87.htm" target="main" title="Таблицы, используемые программой">Таблицы, используемые программой</A></TD>
</TR>
<!------------------------- Экраны редактирования и диалоговые окна ------------------------->
<TR id="L_3_4" style="display:none">
<TD nowrap width="100%"><IMG id="I8" onMouseOver="SetCurData(I8, 'topic88.htm')" usemap="#TextM" class="Level2" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I8, 'topic88.htm')" class="ListNode" href="topic88.htm" target="main" title="Экраны редактирования и диалоговые окна">Экраны редактирования и диалоговые окна</A></TD>
</TR>
<!------------------------- Модели ------------------------->
<TR id="L_3_5" style="display:none">
<TD nowrap width="100%"><IMG id="I9" onMouseOver="SetCurData(I9, 'topic52.htm')" usemap="#NodeM" class="Level2" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I9, 'topic52.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic52.htm" target="main" title="Модели">Модели</A></TD></TR>
<TR id="L_3_5_1" style="display:none">
<TD nowrap width="100%"><IMG id="I10" onMouseOver="SetCurData(I10, 'topic201.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I10, 'topic201.htm')" class="ListNode" href="topic201.htm" target="main" title="Модель 1">Модель 1</A></TD>
</TR>
<TR id="L_3_5_2" style="display:none">
<TD nowrap width="100%"><IMG id="I11" onMouseOver="SetCurData(I11, 'topic202.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I11, 'topic202.htm')" class="ListNode" href="topic202.htm" target="main" title="Модель 2">Модель 2</A></TD>
</TR>
<TR id="L_3_5_3" style="display:none">
<TD nowrap width="100%"><IMG id="I12" onMouseOver="SetCurData(I12, 'topic203.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I12, 'topic203.htm')" class="ListNode" href="topic203.htm" target="main" title="Модель 3">Модель 3</A></TD>
</TR>
<TR id="L_3_5_4" style="display:none">
<TD nowrap width="100%"><IMG id="I13" onMouseOver="SetCurData(I13, 'topic204.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I13, 'topic204.htm')" class="ListNode" href="topic204.htm" target="main" title="Модель 4">Модель 4</A></TD>
</TR>
<TR id="L_3_5_5" style="display:none">
<TD nowrap width="100%"><IMG id="I14" onMouseOver="SetCurData(I14, 'topic205.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I14, 'topic205.htm')" class="ListNode" href="topic205.htm" target="main" title="Модель 5">Модель 5</A></TD>
</TR>
<!------------------------- Главное меню программы ------------------------->
<TR id="L_3_6" style="display:none">
<TD nowrap width="100%"><IMG id="I15" onMouseOver="SetCurData(I15, 'topic86.htm')" usemap="#NodeM" class="Level2" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I15, 'topic86.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic86.htm" target="main" title="Главное меню программы">Главное меню программы</A></TD></TR>
<TR id="L_3_6_1" style="display:none">
<TD nowrap width="100%"><IMG id="I16" onMouseOver="SetCurData(I16, 'topic51.htm')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I16, 'topic51.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic51.htm" target="main" title="Файл">Файл</A></TD></TR>
<TR id="L_3_6_1_1" style="display:none">
<TD nowrap width="100%"><IMG id="I17" onMouseOver="SetCurData(I17, 'topic7.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I17, 'topic7.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic7.htm" target="main" title="Загрузить">Загрузить</A></TD></TR>
<TR id="L_3_6_1_1_1" style="display:none">
<TD nowrap width="100%"><IMG id="I18" onMouseOver="SetCurData(I18, 'topic20.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I18, 'topic20.htm')" class="ListNode" href="topic20.htm" target="main" title="Таблицу">Таблицу</A></TD>
</TR>
<TR id="L_3_6_1_1_2" style="display:none">
<TD nowrap width="100%"><IMG id="I19" onMouseOver="SetCurData(I19, 'topic21.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I19, 'topic21.htm')" class="ListNode" href="topic21.htm" target="main" title="Вектор">Вектор</A></TD>
</TR>
<TR id="L_3_6_1_1_3" style="display:none">
<TD nowrap width="100%"><IMG id="I20" onMouseOver="SetCurData(I20, 'topic58.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I20, 'topic58.htm')" class="ListNode" href="topic58.htm" target="main" title="Логическую таблицу">Логическую таблицу</A></TD>
</TR>
<TR id="L_3_6_1_2" style="display:none">
<TD nowrap width="100%"><IMG id="I21" onMouseOver="SetCurData(I21, 'topic16.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I21, 'topic16.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic16.htm" target="main" title="Сохранить">Сохранить</A></TD></TR>
<TR id="L_3_6_1_2_1" style="display:none">
<TD nowrap width="100%"><IMG id="I22" onMouseOver="SetCurData(I22, 'topic22.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I22, 'topic22.htm')" class="ListNode" href="topic22.htm" target="main" title="Таблицу">Таблицу</A></TD>
</TR>
<TR id="L_3_6_1_2_2" style="display:none">
<TD nowrap width="100%"><IMG id="I23" onMouseOver="SetCurData(I23, 'topic23.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I23, 'topic23.htm')" class="ListNode" href="topic23.htm" target="main" title="Вектор">Вектор</A></TD>
</TR>
<TR id="L_3_6_1_2_3" style="display:none">
<TD nowrap width="100%"><IMG id="I24" onMouseOver="SetCurData(I24, 'topic59.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I24, 'topic59.htm')" class="ListNode" href="topic59.htm" target="main" title="Логическую таблицу">Логическую таблицу</A></TD>
</TR>
<TR id="L_3_6_1_3" style="display:none">
<TD nowrap width="100%"><IMG id="I25" onMouseOver="SetCurData(I25, 'topic17.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I25, 'topic17.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic17.htm" target="main" title="Удалить">Удалить</A></TD></TR>
<TR id="L_3_6_1_3_1" style="display:none">
<TD nowrap width="100%"><IMG id="I26" onMouseOver="SetCurData(I26, 'topic25.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I26, 'topic25.htm')" class="ListNode" href="topic25.htm" target="main" title="Таблицу">Таблицу</A></TD>
</TR>
<TR id="L_3_6_1_3_2" style="display:none">
<TD nowrap width="100%"><IMG id="I27" onMouseOver="SetCurData(I27, 'topic24.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I27, 'topic24.htm')" class="ListNode" href="topic24.htm" target="main" title="Вектор">Вектор</A></TD>
</TR>
<TR id="L_3_6_1_3_3" style="display:none">
<TD nowrap width="100%"><IMG id="I28" onMouseOver="SetCurData(I28, 'topic60.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I28, 'topic60.htm')" class="ListNode" href="topic60.htm" target="main" title="Логическую таблицу">Логическую таблицу</A></TD>
</TR>
<TR id="L_3_6_1_4" style="display:none">
<TD nowrap width="100%"><IMG id="I29" onMouseOver="SetCurData(I29, 'topic5.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I29, 'topic5.htm')" class="ListNode" href="topic5.htm" target="main" title="Экспорт">Экспорт</A></TD>
</TR>
<TR id="L_3_6_1_5" style="display:none">
<TD nowrap width="100%"><IMG id="I30" onMouseOver="SetCurData(I30, 'topic6.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I30, 'topic6.htm')" class="ListNode" href="topic6.htm" target="main" title="Импорт">Импорт</A></TD>
</TR>
<TR id="L_3_6_1_6" style="display:none">
<TD nowrap width="100%"><IMG id="I31" onMouseOver="SetCurData(I31, 'topic79.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I31, 'topic79.htm')" class="ListNode" href="topic79.htm" target="main" title="Просмотр">Просмотр</A></TD>
</TR>
<TR id="L_3_6_2" style="display:none">
<TD nowrap width="100%"><IMG id="I32" onMouseOver="SetCurData(I32, 'topic9.htm')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I32, 'topic9.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic9.htm" target="main" title="Таблица">Таблица</A></TD></TR>
<TR id="L_3_6_2_1" style="display:none">
<TD nowrap width="100%"><IMG id="I33" onMouseOver="SetCurData(I33, 'topic10.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I33, 'topic10.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic10.htm" target="main" title="Создать">Создать</A></TD></TR>
<TR id="L_3_6_2_1_1" style="display:none">
<TD nowrap width="100%"><IMG id="I34" onMouseOver="SetCurData(I34, 'topic26.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I34, 'topic26.htm')" class="ListNode" href="topic26.htm" target="main" title="Новый вектор">Новый вектор</A></TD>
</TR>
<TR id="L_3_6_2_1_2" style="display:none">
<TD nowrap width="100%"><IMG id="I35" onMouseOver="SetCurData(I35, 'topic27.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I35, 'topic27.htm')" class="ListNode" href="topic27.htm" target="main" title="Новая таблица">Новая таблица</A></TD>
</TR>
<TR id="L_3_6_2_1_3" style="display:none">
<TD nowrap width="100%"><IMG id="I36" onMouseOver="SetCurData(I36, 'topic56.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I36, 'topic56.htm')" class="ListNode" href="topic56.htm" target="main" title="Новая логическая таблица">Новая логическая таблица</A></TD>
</TR>
<TR id="L_3_6_2_2" style="display:none">
<TD nowrap width="100%"><IMG id="I37" onMouseOver="SetCurData(I37, 'topic11.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I37, 'topic11.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic11.htm" target="main" title="Просмотр">Просмотр</A></TD></TR>
<TR id="L_3_6_2_2_1" style="display:none">
<TD nowrap width="100%"><IMG id="I38" onMouseOver="SetCurData(I38, 'topic28.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I38, 'topic28.htm')" class="ListNode" href="topic28.htm" target="main" title="Вектора">Вектора</A></TD>
</TR>
<TR id="L_3_6_2_2_2" style="display:none">
<TD nowrap width="100%"><IMG id="I39" onMouseOver="SetCurData(I39, 'topic29.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I39, 'topic29.htm')" class="ListNode" href="topic29.htm" target="main" title="Таблицы">Таблицы</A></TD>
</TR>
<TR id="L_3_6_2_2_3" style="display:none">
<TD nowrap width="100%"><IMG id="I40" onMouseOver="SetCurData(I40, 'topic55.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I40, 'topic55.htm')" class="ListNode" href="topic55.htm" target="main" title="Числовой таблицы с логической">Числовой таблицы с логической</A></TD>
</TR>
<TR id="L_3_6_2_3" style="display:none">
<TD nowrap width="100%"><IMG id="I41" onMouseOver="SetCurData(I41, 'topic19.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I41, 'topic19.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic19.htm" target="main" title="Выгрузить">Выгрузить</A></TD></TR>
<TR id="L_3_6_2_3_1" style="display:none">
<TD nowrap width="100%"><IMG id="I42" onMouseOver="SetCurData(I42, 'topic30.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I42, 'topic30.htm')" class="ListNode" href="topic30.htm" target="main" title="Вектор">Вектор</A></TD>
</TR>
<TR id="L_3_6_2_3_2" style="display:none">
<TD nowrap width="100%"><IMG id="I43" onMouseOver="SetCurData(I43, 'topic31.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I43, 'topic31.htm')" class="ListNode" href="topic31.htm" target="main" title="Таблицу">Таблицу</A></TD>
</TR>
<TR id="L_3_6_2_3_3" style="display:none">
<TD nowrap width="100%"><IMG id="I44" onMouseOver="SetCurData(I44, 'topic57.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I44, 'topic57.htm')" class="ListNode" href="topic57.htm" target="main" title="Логическую таблицу">Логическую таблицу</A></TD>
</TR>
<TR id="L_3_6_2_4" style="display:none">
<TD nowrap width="100%"><IMG id="I45" onMouseOver="SetCurData(I45, 'topic8.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I45, 'topic8.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic8.htm" target="main" title="Изменить название">Изменить название</A></TD></TR>
<TR id="L_3_6_2_4_1" style="display:none">
<TD nowrap width="100%"><IMG id="I46" onMouseOver="SetCurData(I46, 'topic32.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I46, 'topic32.htm')" class="ListNode" href="topic32.htm" target="main" title="Вектора">Вектора</A></TD>
</TR>
<TR id="L_3_6_2_4_2" style="display:none">
<TD nowrap width="100%"><IMG id="I47" onMouseOver="SetCurData(I47, 'topic33.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I47, 'topic33.htm')" class="ListNode" href="topic33.htm" target="main" title="Таблицы">Таблицы</A></TD>
</TR>
<TR id="L_3_6_2_4_3" style="display:none">
<TD nowrap width="100%"><IMG id="I48" onMouseOver="SetCurData(I48, 'topic61.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I48, 'topic61.htm')" class="ListNode" href="topic61.htm" target="main" title="Логической таблицы">Логической таблицы</A></TD>
</TR>
<TR id="L_3_6_2_5" style="display:none">
<TD nowrap width="100%"><IMG id="I49" onMouseOver="SetCurData(I49, 'topic12.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I49, 'topic12.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic12.htm" target="main" title="Операции с таблицами">Операции с таблицами</A></TD></TR>
<TR id="L_3_6_2_5_1" style="display:none">
<TD nowrap width="100%"><IMG id="I50" onMouseOver="SetCurData(I50, 'topic34.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I50, 'topic34.htm')" class="ListNode" href="topic34.htm" target="main" title="Округлить">Округлить</A></TD>
</TR>
<TR id="L_3_6_2_5_2" style="display:none">
<TD nowrap width="100%"><IMG id="I51" onMouseOver="SetCurData(I51, 'topic35.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I51, 'topic35.htm')" class="ListNode" href="topic35.htm" target="main" title="Проверка баланса">Проверка баланса</A></TD>
</TR>
<TR id="L_3_6_2_5_3" style="display:none">
<TD nowrap width="100%"><IMG id="I52" onMouseOver="SetCurData(I52, 'topic39.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I52, 'topic39.htm')" class="ListNode" href="topic39.htm" target="main" title="Столбец в вектор">Столбец в вектор</A></TD>
</TR>
<TR id="L_3_6_2_5_4" style="display:none">
<TD nowrap width="100%"><IMG id="I53" onMouseOver="SetCurData(I53, 'topic40.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I53, 'topic40.htm')" class="ListNode" href="topic40.htm" target="main" title="Строка в вектор">Строка в вектор</A></TD>
</TR>
<TR id="L_3_6_2_5_5" style="display:none">
<TD nowrap width="100%"><IMG id="I54" onMouseOver="SetCurData(I54, 'topic41.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I54, 'topic41.htm')" class="ListNode" href="topic41.htm" target="main" title="Диагональ в вектор">Диагональ в вектор</A></TD>
</TR>
<TR id="L_3_6_2_6" style="display:none">
<TD nowrap width="100%"><IMG id="I55" onMouseOver="SetCurData(I55, 'topic18.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I55, 'topic18.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic18.htm" target="main" title="Операции с векторами">Операции с векторами</A></TD></TR>
<TR id="L_3_6_2_6_1" style="display:none">
<TD nowrap width="100%"><IMG id="I56" onMouseOver="SetCurData(I56, 'topic36.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I56, 'topic36.htm')" class="ListNode" href="topic36.htm" target="main" title="Вставить столбцом">Вставить столбцом</A></TD>
</TR>
<TR id="L_3_6_2_6_2" style="display:none">
<TD nowrap width="100%"><IMG id="I57" onMouseOver="SetCurData(I57, 'topic37.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I57, 'topic37.htm')" class="ListNode" href="topic37.htm" target="main" title="Вставить строкой">Вставить строкой</A></TD>
</TR>
<TR id="L_3_6_2_6_3" style="display:none">
<TD nowrap width="100%"><IMG id="I58" onMouseOver="SetCurData(I58, 'topic38.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I58, 'topic38.htm')" class="ListNode" href="topic38.htm" target="main" title="Вставить диагональю">Вставить диагональю</A></TD>
</TR>
<TR id="L_3_6_2_6_4" style="display:none">
<TD nowrap width="100%"><IMG id="I59" onMouseOver="SetCurData(I59, 'topic54.htm')" usemap="#TextM" class="Level5" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I59, 'topic54.htm')" class="ListNode" href="topic54.htm" target="main" title="Удалить компоненты">Удалить компоненты</A></TD>
</TR>
<TR id="L_3_6_2_7" style="display:none">
<TD nowrap width="100%"><IMG id="I60" onMouseOver="SetCurData(I60, 'topic42.htm')" usemap="#NodeM" class="Level4" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I60, 'topic42.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic42.htm" target="main" title="Операции с заголовками">Операции с заголовками</A></TD></TR>
<TR id="L_3_6_2_7_1" style="display:none">
<TD nowrap width="100%"><IMG id="I61" onMouseOver="SetCurData(I61, 'topic43.htm')" usemap="#NodeM" class="Level5" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I61, 'topic43.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic43.htm" target="main" title="Отбросить заголовки">Отбросить заголовки</A></TD></TR>
<TR id="L_3_6_2_7_1_1" style="display:none">
<TD nowrap width="100%"><IMG id="I62" onMouseOver="SetCurData(I62, 'topic46.htm')" usemap="#TextM" class="Level6" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I62, 'topic46.htm')" class="ListNode" href="topic46.htm" target="main" title="Вектора">Вектора</A></TD>
</TR>
<TR id="L_3_6_2_7_1_2" style="display:none">
<TD nowrap width="100%"><IMG id="I63" onMouseOver="SetCurData(I63, 'topic47.htm')" usemap="#TextM" class="Level6" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I63, 'topic47.htm')" class="ListNode" href="topic47.htm" target="main" title="Таблицы">Таблицы</A></TD>
</TR>
<TR id="L_3_6_2_7_2" style="display:none">
<TD nowrap width="100%"><IMG id="I64" onMouseOver="SetCurData(I64, 'topic44.htm')" usemap="#NodeM" class="Level5" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I64, 'topic44.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic44.htm" target="main" title="Создать заголовки">Создать заголовки</A></TD></TR>
<TR id="L_3_6_2_7_2_1" style="display:none">
<TD nowrap width="100%"><IMG id="I65" onMouseOver="SetCurData(I65, 'topic48.htm')" usemap="#TextM" class="Level6" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I65, 'topic48.htm')" class="ListNode" href="topic48.htm" target="main" title="Вектора">Вектора</A></TD>
</TR>
<TR id="L_3_6_2_7_2_2" style="display:none">
<TD nowrap width="100%"><IMG id="I66" onMouseOver="SetCurData(I66, 'topic49.htm')" usemap="#TextM" class="Level6" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I66, 'topic49.htm')" class="ListNode" href="topic49.htm" target="main" title="Таблицы">Таблицы</A></TD>
</TR>
<TR id="L_3_6_2_7_3" style="display:none">
<TD nowrap width="100%"><IMG id="I67" onMouseOver="SetCurData(I67, 'topic45.htm')" usemap="#NodeM" class="Level5" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I67, 'topic45.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic45.htm" target="main" title="Копировать заголовки">Копировать заголовки</A></TD></TR>
<TR id="L_3_6_2_7_3_1" style="display:none">
<TD nowrap width="100%"><IMG id="I68" onMouseOver="SetCurData(I68, 'topic50.htm')" usemap="#TextM" class="Level6" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I68, 'topic50.htm')" class="ListNode" href="topic50.htm" target="main" title="Вектора">Вектора</A></TD>
</TR>
<TR id="L_3_6_2_7_3_2" style="display:none">
<TD nowrap width="100%"><IMG id="I69" onMouseOver="SetCurData(I69, 'topic62.htm')" usemap="#TextM" class="Level6" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I69, 'topic62.htm')" class="ListNode" href="topic62.htm" target="main" title="Таблицы">Таблицы</A></TD>
</TR>
<TR id="L_3_6_3" style="display:none">
<TD nowrap width="100%"><IMG id="I70" onMouseOver="SetCurData(I70, 'topic52.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I70, 'topic52.htm')" class="ListNode" href="topic52.htm" target="main" title="Модель">Модель</A></TD>
</TR>
<TR id="L_3_6_4" style="display:none">
<TD nowrap width="100%"><IMG id="I71" onMouseOver="SetCurData(I71, 'topic63.htm')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I71, 'topic63.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic63.htm" target="main" title="Графики">Графики</A></TD></TR>
<TR id="L_3_6_4_1" style="display:none">
<TD nowrap width="100%"><IMG id="I72" onMouseOver="SetCurData(I72, 'topic64.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I72, 'topic64.htm')" class="ListNode" href="topic64.htm" target="main" title="Векторов">Векторов</A></TD>
</TR>
<TR id="L_3_6_4_2" style="display:none">
<TD nowrap width="100%"><IMG id="I73" onMouseOver="SetCurData(I73, 'topic65.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I73, 'topic65.htm')" class="ListNode" href="topic65.htm" target="main" title="Строк/столбцов">Строк/столбцов</A></TD>
</TR>
<TR id="L_3_6_4_3" style="display:none">
<TD nowrap width="100%"><IMG id="I74" onMouseOver="SetCurData(I74, 'topic66.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I74, 'topic66.htm')" class="ListNode" href="topic66.htm" target="main" title="Элементы разных матриц">Элементы разных матриц</A></TD>
</TR>
<TR id="L_3_6_4_4" style="display:none">
<TD nowrap width="100%"><IMG id="I75" onMouseOver="SetCurData(I75, 'topic67.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I75, 'topic67.htm')" class="ListNode" href="topic67.htm" target="main" title="Элементы разных векторов">Элементы разных векторов</A></TD>
</TR>
<TR id="L_3_6_4_5" style="display:none">
<TD nowrap width="100%"><IMG id="I76" onMouseOver="SetCurData(I76, 'topic68.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I76, 'topic68.htm')" class="ListNode" href="topic68.htm" target="main" title="Старый график">Старый график</A></TD>
</TR>
<TR id="L_3_6_4_6" style="display:none">
<TD nowrap width="100%"><IMG id="I77" onMouseOver="SetCurData(I77, 'topic69.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I77, 'topic69.htm')" class="ListNode" href="topic69.htm" target="main" title="Просмотр файла PCX">Просмотр файла PCX</A></TD>
</TR>
<TR id="L_3_6_5" style="display:none">
<TD nowrap width="100%"><IMG id="I78" onMouseOver="SetCurData(I78, 'topic13.htm')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I78, 'topic13.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic13.htm" target="main" title="Параметры">Параметры</A></TD></TR>
<TR id="L_3_6_5_1" style="display:none">
<TD nowrap width="100%"><IMG id="I79" onMouseOver="SetCurData(I79, 'topic14.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I79, 'topic14.htm')" class="ListNode" href="topic14.htm" target="main" title="Порт">Порт</A></TD>
</TR>
<TR id="L_3_6_5_2" style="display:none">
<TD nowrap width="100%"><IMG id="I80" onMouseOver="SetCurData(I80, 'topic70.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I80, 'topic70.htm')" class="ListNode" href="topic70.htm" target="main" title="Проверка невырожденности">Проверка невырожденности</A></TD>
</TR>
<TR id="L_3_6_5_3" style="display:none">
<TD nowrap width="100%"><IMG id="I81" onMouseOver="SetCurData(I81, 'topic78.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I81, 'topic78.htm')" class="ListNode" href="topic78.htm" target="main" title="Вид в списках">Вид в списках</A></TD>
</TR>
<TR id="L_3_6_5_4" style="display:none">
<TD nowrap width="100%"><IMG id="I82" onMouseOver="SetCurData(I82, 'topic80.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I82, 'topic80.htm')" class="ListNode" href="topic80.htm" target="main" title="Параметры просмотра">Параметры просмотра</A></TD>
</TR>
<TR id="L_3_6_5_5" style="display:none">
<TD nowrap width="100%"><IMG id="I83" onMouseOver="SetCurData(I83, 'topic71.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I83, 'topic71.htm')" class="ListNode" href="topic71.htm" target="main" title="Монопольное исполнение">Монопольное исполнение</A></TD>
</TR>
<TR id="L_3_6_6" style="display:none">
<TD nowrap width="100%"><IMG id="I84" onMouseOver="SetCurData(I84, 'topic72.htm')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I84, 'topic72.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic72.htm" target="main" title="Clipboard">Clipboard</A></TD></TR>
<TR id="L_3_6_6_1" style="display:none">
<TD nowrap width="100%"><IMG id="I85" onMouseOver="SetCurData(I85, 'topic73.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I85, 'topic73.htm')" class="ListNode" href="topic73.htm" target="main" title="Копировать таблицу">Копировать таблицу</A></TD>
</TR>
<TR id="L_3_6_6_2" style="display:none">
<TD nowrap width="100%"><IMG id="I86" onMouseOver="SetCurData(I86, 'topic74.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I86, 'topic74.htm')" class="ListNode" href="topic74.htm" target="main" title="Копировать вектор">Копировать вектор</A></TD>
</TR>
<TR id="L_3_6_6_3" style="display:none">
<TD nowrap width="100%"><IMG id="I87" onMouseOver="SetCurData(I87, 'topic75.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I87, 'topic75.htm')" class="ListNode" href="topic75.htm" target="main" title="Вставить таблицу">Вставить таблицу</A></TD>
</TR>
<TR id="L_3_6_6_4" style="display:none">
<TD nowrap width="100%"><IMG id="I88" onMouseOver="SetCurData(I88, 'topic76.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I88, 'topic76.htm')" class="ListNode" href="topic76.htm" target="main" title="Вставить вектор">Вставить вектор</A></TD>
</TR>
<TR id="L_3_6_6_5" style="display:none">
<TD nowrap width="100%"><IMG id="I89" onMouseOver="SetCurData(I89, 'topic77.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I89, 'topic77.htm')" class="ListNode" href="topic77.htm" target="main" title="Заменять десятичную точку">Заменять десятичную точку</A></TD>
</TR>
<TR id="L_3_6_7" style="display:none">
<TD nowrap width="100%"><IMG id="I90" onMouseOver="SetCurData(I90, 'topic53.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I90, 'topic53.htm')" class="ListNode" href="topic53.htm" target="main" title="Выход">Выход</A></TD>
</TR>
<!------------------------- Построение графиков ------------------------->
<TR id="L_3_7" style="display:none">
<TD nowrap width="100%"><IMG id="I91" onMouseOver="SetCurData(I91, 'topic92.htm')" usemap="#NodeM" class="Level2" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I91, 'topic92.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic92.htm" target="main" title="Построение графиков">Построение графиков</A></TD></TR>
<TR id="L_3_7_1" style="display:none">
<TD nowrap width="100%"><IMG id="I92" onMouseOver="SetCurData(I92, 'topic93.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I92, 'topic93.htm')" class="ListNode" href="topic93.htm" target="main" title="Формат таблиц для графиков и рекомендации по их редактированию вручную">Формат таблиц для графиков и рекомендации по их редактированию вручную</A></TD>
</TR>
<TR id="L_3_7_2" style="display:none">
<TD nowrap width="100%"><IMG id="I93" onMouseOver="SetCurData(I93, 'topic95.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I93, 'topic95.htm')" class="ListNode" href="topic95.htm" target="main" title="Работа с графиком">Работа с графиком</A></TD>
</TR>
<TR id="L_3_7_3" style="display:none">
<TD nowrap width="100%"><IMG id="I94" onMouseOver="SetCurData(I94, 'topic64.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I94, 'topic64.htm')" class="ListNode" href="topic64.htm" target="main" title="Построение графиков векторов">Построение графиков векторов</A></TD>
</TR>
<TR id="L_3_7_4" style="display:none">
<TD nowrap width="100%"><IMG id="I95" onMouseOver="SetCurData(I95, 'topic65.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I95, 'topic65.htm')" class="ListNode" href="topic65.htm" target="main" title="График строк/столбцов матрицы">График строк/столбцов матрицы</A></TD>
</TR>
<TR id="L_3_7_5" style="display:none">
<TD nowrap width="100%"><IMG id="I96" onMouseOver="SetCurData(I96, 'topic66.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I96, 'topic66.htm')" class="ListNode" href="topic66.htm" target="main" title="График элементов разных матриц">График элементов разных матриц</A></TD>
</TR>
<TR id="L_3_7_6" style="display:none">
<TD nowrap width="100%"><IMG id="I97" onMouseOver="SetCurData(I97, 'topic67.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I97, 'topic67.htm')" class="ListNode" href="topic67.htm" target="main" title="График элементов разных векторов">График элементов разных векторов</A></TD>
</TR>
<TR id="L_3_7_7" style="display:none">
<TD nowrap width="100%"><IMG id="I98" onMouseOver="SetCurData(I98, 'topic63.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I98, 'topic63.htm')" class="ListNode" href="topic63.htm" target="main" title="Пункт меню Графики">Пункт меню Графики</A></TD>
</TR>
<!------------------------- Параметры командной строки программы ------------------------->
<TR id="L_3_8" style="display:none">
<TD nowrap width="100%"><IMG id="I99" onMouseOver="SetCurData(I99, 'topic302.htm')" usemap="#NodeM" class="Level2" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I99, 'topic302.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic302.htm" target="main" title="Параметры командной строки программы">Параметры командной строки программы</A></TD></TR>
<TR id="L_3_8_1" style="display:none">
<TD nowrap width="100%"><IMG id="I100" onMouseOver="SetCurData(I100, 'topic305.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I100, 'topic305.htm')" class="ListNode" href="topic305.htm" target="main" title="/f - загрузка русского шрифта для VGA">/f - загрузка русского шрифта для VGA</A></TD>
</TR>
<!------------------------- Разрешение вопросов ------------------------->
<TR id="L_3_9" style="display:none">
<TD nowrap width="100%"><IMG id="I101" onMouseOver="SetCurData(I101, 'topic303.htm')" usemap="#NodeM" class="Level2" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I101, 'topic303.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic303.htm" target="main" title="Разрешение вопросов">Разрешение вопросов</A></TD></TR>
<TR id="L_3_9_1" style="display:none">
<TD nowrap width="100%"><IMG id="I102" onMouseOver="SetCurData(I102, '')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><SPAN onMouseOver="SetCurData(I102, '')" onDblClick="CheckExpand()" class="ListItem" title="Ошибки возникающие при загрузке программы">Ошибки возникающие при загрузке программы</SPAN></TD></TR>
<TR id="L_3_9_1_1" style="display:none">
<TD nowrap width="100%"><IMG id="I103" onMouseOver="SetCurData(I103, 'topic308.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I103, 'topic308.htm')" class="ListNode" href="topic308.htm" target="main" title="Появление сообщения Out of memory">Появление сообщения Out of memory</A></TD>
</TR>
<TR id="L_3_9_1_2" style="display:none">
<TD nowrap width="100%"><IMG id="I104" onMouseOver="SetCurData(I104, 'topic301.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I104, 'topic301.htm')" class="ListNode" href="topic301.htm" target="main" title="Ошибка загрузки шрифта">Ошибка загрузки шрифта</A></TD>
</TR>
<TR id="L_3_9_1_3" style="display:none">
<TD nowrap width="100%"><IMG id="I105" onMouseOver="SetCurData(I105, 'topic309.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I105, 'topic309.htm')" class="ListNode" href="topic309.htm" target="main" title="Не найден справочный файл программы">Не найден справочный файл программы</A></TD>
</TR>
<TR id="L_3_9_1_4" style="display:none">
<TD nowrap width="100%"><IMG id="I106" onMouseOver="SetCurData(I106, 'topic310.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I106, 'topic310.htm')" class="ListNode" href="topic310.htm" target="main" title="Ошибка инициализации оверлея">Ошибка инициализации оверлея</A></TD>
</TR>
<TR id="L_3_9_2" style="display:none">
<TD nowrap width="100%"><IMG id="I107" onMouseOver="SetCurData(I107, '')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><SPAN onMouseOver="SetCurData(I107, '')" onDblClick="CheckExpand()" class="ListItem" title="Ошибки, связанные с нехваткой памяти">Ошибки, связанные с нехваткой памяти</SPAN></TD></TR>
<TR id="L_3_9_2_1" style="display:none">
<TD nowrap width="100%"><IMG id="I108" onMouseOver="SetCurData(I108, 'topic200.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I108, 'topic200.htm')" class="ListNode" href="topic200.htm" target="main" title="Слишком много загруженных таблиц">Слишком много загруженных таблиц</A></TD>
</TR>
<TR id="L_3_9_2_2" style="display:none">
<TD nowrap width="100%"><IMG id="I109" onMouseOver="SetCurData(I109, 'topic311.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I109, 'topic311.htm')" class="ListNode" href="topic311.htm" target="main" title="Сообщение 'Невозможно открыть файл:' (при выборе пунктов в меню Файл)">Сообщение 'Невозможно открыть файл:' (при выборе пунктов в меню Файл)</A></TD>
</TR>
<TR id="L_3_9_2_3" style="display:none">
<TD nowrap width="100%"><IMG id="I110" onMouseOver="SetCurData(I110, 'topic312.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I110, 'topic312.htm')" class="ListNode" href="topic312.htm" target="main" title="Не отображается оглавление справочника">Не отображается оглавление справочника</A></TD>
</TR>
<TR id="L_3_9_3" style="display:none">
<TD nowrap width="100%"><IMG id="I111" onMouseOver="SetCurData(I111, '')" usemap="#NodeM" class="Level3" src="../images/list_cls.gif" width="31" height="15" border="0"><SPAN onMouseOver="SetCurData(I111, '')" onDblClick="CheckExpand()" class="ListItem" title="Разное">Разное</SPAN></TD></TR>
<TR id="L_3_9_3_1" style="display:none">
<TD nowrap width="100%"><IMG id="I112" onMouseOver="SetCurData(I112, 'topic313.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I112, 'topic313.htm')" class="ListNode" href="topic313.htm" target="main" title="Искажение символов кириллицы (после отрисовки графиков)">Искажение символов кириллицы (после отрисовки графиков)</A></TD>
</TR>
<TR id="L_3_9_3_2" style="display:none">
<TD nowrap width="100%"><IMG id="I113" onMouseOver="SetCurData(I113, 'topic314.htm')" usemap="#TextM" class="Level4" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I113, 'topic314.htm')" class="ListNode" href="topic314.htm" target="main" title="В меню нет пункта Clipboard (при работе под Windows)">В меню нет пункта Clipboard (при работе под Windows)</A></TD>
</TR>
<!------------------------- Разное ------------------------->
<TR id="L_3_0" style="display:none">
<TD nowrap width="100%"><IMG id="I114" onMouseOver="SetCurData(I114, 'topic304.htm')" usemap="#NodeM" class="Level2" src="../images/list_cls.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I114, 'topic304.htm')" onDblClick="CheckExpand()" class="ListNode" href="topic304.htm" target="main" title="Разное">Разное</A></TD></TR>
<TR id="L_3_0_1" style="display:none">
<TD nowrap width="100%"><IMG id="I115" onMouseOver="SetCurData(I115, 'topic305.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I115, 'topic305.htm')" class="ListNode" href="topic305.htm" target="main" title="Загрузка русского шрифта для VGA">Загрузка русского шрифта для VGA</A></TD>
</TR>
<TR id="L_3_0_2" style="display:none">
<TD nowrap width="100%"><IMG id="I116" onMouseOver="SetCurData(I116, 'topic307.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I116, 'topic307.htm')" class="ListNode" href="topic307.htm" target="main" title="Кодировки текста при просмотре файлов">Кодировки текста при просмотре файлов</A></TD>
</TR>
<TR id="L_3_0_3" style="display:none">
<TD nowrap width="100%"><IMG id="I117" onMouseOver="SetCurData(I117, 'topic306.htm')" usemap="#TextM" class="Level3" src="../images/list_txt.gif" width="31" height="15" border="0"><A onMouseOver="SetCurData(I117, 'topic306.htm')" class="ListNode" href="topic306.htm" target="main" title="Форматы данных поддерживаемые программой">Форматы данных поддерживаемые программой</A></TD>
</TR>

</TABLE>
<!------------------------- Карты для списков ------------------------->
<MAP NAME="NodeM">
<AREA id="PlusMinus" shape="RECT" coords="0,5,9,14"
href="javascript:DoNothing()"
onClick="CheckExpand()"
alt="Щелкните, чтобы развернуть/свернуть список">
<AREA shape="RECT" coords="15,0,31,15"
href="javascript:DoNothing()"
onClick="FollowCurLink()"
onDblClick="CheckExpand()"
alt="Щелкните дважды, чтобы развернуть/свернуть список">
</MAP>
<MAP NAME="TextM">
<AREA shape="RECT" coords="19,0,31,15"
href="javascript:FollowCurLink()"
alt="Щелкните, чтобы открыть документ">
</MAP>
</BODY>
</HTML>


Лицензия Creative Commons   Яндекс.Метрика