﻿
function CMS_ContextMenu_GetBegin()
{
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="200" style="background-color: #F4F4F4;"><tr><td height="20"><img src="/images/contexttop.gif" width="200" height="20" border="0"></td></tr>');
}



function CMS_ContextMenu_GetEnd()
{
	document.write('<tr><td height="1">&nbsp;<br /><img src="/images/contextbottom.gif" width="200" height="1" border="0"></td></tr></table>');
}



var isContentFirstItem = true;

function CMS_ContextMenu_GetItem(psName, psUrl, psDesc, psTarget, pbIsSelected, biLevel)
{

    var s = "";
	var i = 0;
    for (var cms_i = 0; cms_i < biLevel; cms_i ++)
    {
	i += 20;
        s = "padding-left: " + i + "px;";
    }
    
	if (pbIsSelected)
		document.write('<tr><td style="background-color: #dddddd; padding:7px;' + s + '">' +
			'<b><a  href="' + psUrl + '" title="' + psDesc + '" target="' + psTarget +	'" class="contMenu">' + psName +
			'</a></b></td></tr>');
	else
		document.write('<tr><td style="padding:7px;' + s + '">' +
			'<a  href="' + psUrl + '" title="' + psDesc + '" target="' + psTarget +	'" class="contMenuHover">' + psName +
			'</a></td></tr>');

	isContentFirstItem = false;
}




function CMS_ContextMenu_GetIfDefaultPage()
{
CMS_ContextMenu_GetBegin();
    document.write('<tr><td style="background-image: url(/images/contextbg.gif); ">&nbsp;</td></tr>');
CMS_ContextMenu_GetEnd();
}



function CMS_ContextMenu_GetIfWithoutMenu()
{
CMS_ContextMenu_GetBegin();
    document.write('<tr><td style="background-image: url(/images/contextbg.gif); ">&nbsp;</td></tr>');
CMS_ContextMenu_GetEnd();
}