﻿
function CMS_MainMenu_GetBegin()
{
	document.write("<table width=100% border=0 cellspacing=0 cellpadding=0 bgcolor=#663300 height=23><tr><td width=1% ></td>");
}



function CMS_MainMenu_GetEnd()
{
	document.write("<td width=1%></td></tr></table>");
}




function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, iconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	document.write("<td width=14% align=\"center\" style=\"padding-left: 4px; padding-right: 4px;\" ");
	if(pbIsCurrMenuItem) document.write(" bgcolor=\"#764A09\"><nobr><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' class=menu style='color:#F7EFD8;text-decoration:none;' >" + psName + "</a></nobr></td>");
	else
		document.write(" ><nobr><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' class=menu style='color:#F7EFD8;' >" + psName + "</a></nobr></td>");

document.write("<td width=\"1\" bgcolor=#A48D74><img src=\"/images/dot.gif\" width=\"1\" height=\"1\"></td>");

}





function CMS_MenuItem_GetIcon(piId,  psName, psIconURL, 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 "";
}
