var tmpFieldName;

function openCalendar(fieldName) {
	tmpFieldName = fieldName;
	var wFeatures = "width=210,height=260,location=no,menubar=no,personalbar=no,resizable=no,scrollbars=no,status=notitlebar=no,toolbar=no";
	var calendar = window.open("/calendar/calendar.html", "calendar", wFeatures);
	calendar.focus();
}

