﻿/*
Контекстное меню для CMS системы
*/



// Начало меню
function CMS_ContextMenu_GetBegin()
{
	document.write("<div style='margin-left:6px;margin-bottom:70px;'><img src='/img/context_menu_1.gif'></div>");
}



// Конец меню
function CMS_ContextMenu_GetEnd()
{
	document.write("<div style='position:relative;margin-left:6px;margin-top:-26px;margin-bottom:-1px;'><img src='/img/context_menu_3.gif' width='2' height='27px;'></div>");
}

//CMS_StatusMessage_GetForSet

// Элемент меню
// Свойство piTypeItem: 
//	= 0 - Пунк того же уровня
//	= 1 - текущий пункт
//	= 2 - дочерний уровень
function CMS_ContextMenu_GetItem(psName, psUrl, psDesc, psTarget, piTypeItem)
{
	if (piTypeItem == 1) document.write("<a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "' style='color:#D50000'>" + psName + "</a>");
	else if (piTypeItem == 0)
		document.write("<a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName + "</a>");
	else
		document.write("<a href=" + psUrl + " title='" + psDesc + "' target='" + psTarget + "'>" + psName + "</a>");
}



// Первая страница
function CMS_ContextMenu_GetIfFirstPage()
{
}



// Без контекстного меню
function CMS_ContextMenu_GetWithout()
{
}

