function CMS_MainMenu_GetBegin()
{
	document.write("<table id='main_menu' width='100%' class='menu' cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td width='301'><img src=\"/images/top_4.jpg\" border=\"0\"></td>");
}

function CMS_MainMenu_GetEnd()
{
	document.write("</tr></table>");
}



function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage)
{
	document.write("<td class='link'>");

	if(pbIsCurrMenuItem)
		document.write("<div><a class='active' ");
	else
		document.write("<div><a ");


	document.write(" href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName +
		 "</a></div></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 "";
}
