function showCalendar(defaultValue, textBox, file) {
	var value = window.showModalDialog('../popupcalendar/modalcld.html', defaultValue, "dialogwidth:192px;dialogheight:222px;status:no;scroll:no;");
	if (value != null) textBox.value = value;
	if (file == 'order') chkDate();
}

