function CMS_MainMenu_GetBegin(){
	document.write("<table cellPadding=\"0\" cellSpacing=\"0\" width=\"100%\" id=\"header_menu\" style=\"background:url(/images/top_menu.jpg) 0 0 repeat-x;\"><tr>"+
	"<td style=\"background:url(/images/top_menu_left.jpg) 0 0 no-repeat;width:170px;\">&nbsp;</td>");
}

function CMS_MainMenu_GetEnd(){
	document.write("<td style=\"background:url(/images/top_menu_right.jpg) 0 0 no-repeat;width:165px;\"></td></tr></table>");
}

function CMS_MainMenu_GetItem(piId, psName, psUrl, psDesc, psTarget, psIconURL, psIconWidth, psIconHeight, pbIsCurrMenuItem, pbIsFirstPage){
	document.write("<td style=\"vertical-align:top;text-align:center;\"");

	if(pbIsCurrMenuItem) document.write(" class=\"header_menu_item_active\"><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName);
    else document.write("><a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName);

	document.write("</a></td>");
}

