﻿
function CMS_MainMenu_GetBegin()
{
    document.write("<table width=100% height=32px border=0 cellspacing=0 valign=center cellpadding=0 class=\"mainmenu\"><tr style=\"background:url(/images/mainmenu_bg.png) left top repeat-x\"><td style=\"width:241px; background:url(/images/mainmenu_left_bg.jpg) top left no-repeat\">&nbsp</td>");
}




function CMS_MainMenu_GetEnd()
{
    document.write("<td style=\"width:283px; background:url(/images/mainmenu_right_bg.jpg) top left no-repeat\">&nbsp</td></tr></table>");
}




function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	document.write("<td align=\"center\" valign=\"top\" style=\"padding:6px 9px 0px 0px\"");

	if (pbIsCurrMenuItem) {
	    document.write(" class=\"mainmenuCurrentItem\"><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' style=\"text-decoration:none;\">" + psName + "</a>");
	}
	else {
	    document.write(" class=\"mainmenuItem\"><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' style=\"border: 0px;\">" + psName + "</a>");
	}

	document.write("</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 "";
}
