﻿function CMS_MainMenu_GetBegin()
{
	document.write("<table width=100% cellPadding=\"0\" border=\"0\" cellspacing=\"0\" class=\"menu\"><tr>");
}




function CMS_MainMenu_GetEnd()
{
	document.write("<td width=\"20\"></td></tr></table>");
}




function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	var s=CMS_MainMenu_ItemCount/2;

	if (curItem==s) 
		document.write("<td valign=\"top\" align=\"right\"><img border=\"0\" src=\"/images/pics/menu_left.gif\" alt=\"\"></td></tr></table></td><td width=\"284\" valign=\"top\" align=\"center\"><a href=\"/\"><img border=\"0\" src=\"/images/pics/logo1.jpg\" alt=\"Василий Поленов\"></a></td><td valign=\"top\"><table width=\"100%\" cellPadding=\"0\" border=\"0\" cellspacing=\"0\" class=\"menu\"><tr><td valign=\"top\"><img border=\"0\" src=\"/images/pics/menu_right.gif\"></td>");

	document.write("<td nowrap valign=\"top\" style=\"overflow: visible\" align=\"center\"><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName + "</a></td>");

	if ((curItem!=s-1) && (curItem!=CMS_MainMenu_ItemCount-1)) 
		document.write("<td valign=\"top\" width=38><img src=\"/images/pics/menu_sep.gif\" border=\"0\" /></td>");

	curItem+=1;
}




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 "";
}
