﻿// JScript 檔

//取得calendar

function getCalendar(varTextBox, varButton){
	Calendar._FD = 0;
	Calendar.setup({
		inputField     :    varTextBox,     // id of the input field
		ifFormat       :    "%Y/%m/%d",      // format of the input field
		button         :    varButton,  // trigger for the calendar (button ID)
		singleClick    :    true
	});
}

