
function cal_clickDate(oTitle, oPhoto, oContent)
{
	obj_calendar_home_Content = page_findObj("calendar_home_Content")
	obj_calendar_home_Picture = page_findObj("calendar_home_Picture")

	obj_Text = page_findObj(oContent)
	obj_Photo = page_findObj(oPhoto)

	strText = obj_Text.innerHTML
	strPhoto = obj_Photo.innerHTML
	if (jtrim(strPhoto) != "") 
	{
		strText = '<IMG style="border: 1px solid #ffffff; padding-right:10px; margin-right:10px;" name="calendar_home_Picture" id="calendar_home_Picture" align="left" src="'+strPhoto+'"><B>' + oTitle + '</B><BR>' + strText
	}

	obj_calendar_home_Content.innerHTML = strText
	
}

function cal_doRemoveShow()
{
	obj1 = page_findObj("divShowContent")
	obj2 = page_findObj("divShowContentPlaceHolder")
	obj1.style.display = "none";
	obj2.style.display = "";
}

