﻿
function CMS_MainMenu_GetBegin()
{
	document.write("<table width=100% border=0 cellspacing=0 cellpadding=0><tr style=\"heght: 30px;\">");
	document.write("<td align=\"center\"><img src=\"/images/mainmenu_separ.jpg\" border=\"0\" /></td>");
}


function CMS_MainMenu_GetEnd()
{
	document.write("</tr></table>");
}



function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconUrl, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	document.write("<td align=center ");

	if(!pbIsCurrMenuItem) 
		document.write("><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' class=menu>" + psName + "</a></td>");
else
	document.write(" class=menu style=\"color: #f5efe4;\">" + psName + "</td>");
	document.write("<td align=\"center\" style=\"padding-top: 5px;\"><img src=\"/images/mainmenu_separ.jpg\" border=\"0\" /></td>");
}



function CMS_MenuItem_GetIcon(piId,  psName, psIconWidth, psIconHeight)
{
	// Параметры иконки на главную страницу
	HomeIconPath = "images/icons/homePage.gif";
	HomeIconWidth = "14";
	HomeIconHeight = "19";


	if (piId == 0 && HomeIconPath != "")
		return "<img src=\"" + HomeIconPath + "\" width=\"" + HomeIconWidth + "\" height=\"" + HomeIconHeight + "\" alt=\"" + psName + "\">";
	else if (psIconWidth != "")
		return "<img src=\"image.ashx?id=" + piId + "\" width=\"" + psIconWidth + "\" height=\"" + psIconHeight + "\" alt=\"" + psName + "\">";
		
	return "";
}