function __postback(strForm, strAction, strParameter) {
	var objDocument = eval("document." + strForm);
	objDocument.__FormAction.value = strAction;
	objDocument.__FormParameter.value = strParameter;
	objDocument.submit();
}

function __calendar(strFormId, strId) {
	popCal = window.open("/includes/calendar/calendar.php?strFormId=" + strFormId + "&strId=" + strId + "&dttSelected=" + document.forms[strFormId].elements[strId + "_dttSelected"].value,
		"popCal",
		"width=165,height=228,left=200,top=250");
	if (window.focus)
		popCal.focus();
}

function __resetCalendar(strFormId, strId) {
	document.forms[strFormId].elements[strId + "_dttSelected"].value = "";
	document.forms[strFormId].elements[strId].value = "";
}

