function ShowCalendar(FormName, FieldName, DateFormat, WeekStarts, Name, THColor, THFontColor, BodyColor, BodyFontColor)
{
	window.open("http://www.trattorialastrada.com/intelliSelectDate.cfm?FormName=" + FormName + "&amp;FieldName=" + FieldName + "&amp;DateFormat=" + DateFormat + "&amp;WeekStarts=" + WeekStarts + "&amp;Name=" + Name + "&amp;THColor=" + THColor + "&amp;THFontColor=" + THFontColor + "&amp;BodyColor=" + BodyColor + "&amp;BodyFontColor=" + BodyFontColor, "CalendarWindow", "width=180,height=180");
}

function getExpand(item)
{
	obj = document.getElementById(item);
	visible = (obj.style.display != "none");
	key = document.getElementById("x" + item);

	if (visible)
	{
		obj.style.display = "none";
 		key.style.fontWeight = "normal";
	}
	else
	{
		obj.style.display = "block";
		key.style.fontWeight = "bold";
	}
}
