// JavaScript Document
function chgColorMenu(layer)
{
	document.getElementById(layer).style.backgroundColor = "#f0f0f0";
}
function restoreColorMenu(layer)
{
	document.getElementById(layer).style.backgroundColor = "#f8f8f8";
}
function openWindow(urlForm, sTitle, iWidth, iHeight, iMaxWidth, iMaxHeight)
{
	$.window({
			title: sTitle,
			url: urlForm,
			width: iWidth,
			height: iHeight,
			maxWidth: iMaxWidth,
			maxHeight: iMaxHeight
		});
}

