﻿
function CMS_MainMenu_GetBegin()
{
}


function CMS_MainMenu_GetEnd()
{

}



function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconUrl, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
        document.write("<a"+(pbIsCurrMenuItem?" class=menu_cur":"")+" href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'  onmouseover='show_back(this)' onmouseout='show_back(this,1)'>" + psName + "</a>");
}



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 "";
}
