//Куски изящной таблицы цвета хаки с переливом
var menuBeginningTAB = '<table width="170" cellpadding="0" cellspacing="0" border="0" bgcolor="#FFFFFF">';

var menuFinishedTAB = '</table>';


//Функции для вывода всех меню в тело страницы, по функции на меню (а может и одна функция на все меню)
function printMenu(varMenuArrayName,varMenuArrayLink,divName) {

 
var lengthArray = eval(varMenuArrayName + ".length");

if (lengthArray)
{
	document.writeln('<div class="divPopUpMenu" id="' + divName + '" onmouseover="init(\'body_menu\',event,\'\',\'\');" style="filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color=\'#AAAAAA\', Positive=\'true\')">');
//	document.writeln('<div class="divPopUpMenu" id="' + divName + '" onmouseover="init(\'body_menu\',event,\'\',\'\');" style="filter:progid:DXImageTransform.Microsoft.dropshadow(direction=135,color=\'#СССССС\',strength=3)">');


	document.writeln(menuBeginningTAB);
	
	
	
	for (var i = 0; i < lengthArray; i++) {
	
		var tempArray_Name = eval(varMenuArrayName + "[i]"); var tempArray_Link = eval(varMenuArrayLink + "[i]");
		document.writeln('<tr><td class="popupMenuCell" onClick="location.href=\'' + tempArray_Link + '\'" onMouseOver="chColorMenuCel(\'#B6A965\',\'pointer\',\'\',this);" onMouseOut="chColorMenuCel(\'#C4B87E\',\'auto\',\'\',this)"><a href="' + tempArray_Link + '" class="popupMenu">' + tempArray_Name + '</a></td></tr>');
	}
	
	document.writeln(menuFinishedTAB);

	document.writeln('</div>');
 }
  
}