﻿
function CMS_MainMenu_GetBegin()
{
	document.write("<table width=100% cellpadding=0 cellspacing=\"0\" border=\"0\"><tr><td colspan=\"2\"><img align=\"left\" src=\"/images/pics/menu_left.jpg\" alt=\"\" border=\"0\"></td>");
}




function CMS_MainMenu_GetEnd()
{
	document.write("<td colspan=\"2\"><img align=\"right\" src=\"/images/pics/menu_right.jpg\" alt=\"\" border=\"0\"></td></tr></table>");
}




function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	if (pbIsCurrMenuItem)
		document.write("<td><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' class=\"menu-act\">" + psName + "</a></td>");
	else
		document.write("<td><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName + "</a></td>");

	document.write("<td class=\"menu-sep\"></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 "";
}
