<!-- Begin  
//------------------------------------------------------------------

var gdCtrl = new Object();
var goSelectTag = new Array();
var gcGray = "#808080";
var gcToggle = "#999999";
var gcBG = "#F7F7F7";

var gdCurDate = new Date();
var giYear = gdCurDate.getFullYear();
var giMonth = gdCurDate.getMonth()+1;
var giDay = gdCurDate.getDate();

function fSetDate(iYear, iMonth, iDay){
  VicPopCal.style.visibility = "hidden";
  if(iDay < 10){
	  iDay = "0" + iDay
  }
  if(iMonth < 10){
	  iMonth = "0" + iMonth
  }
  gdCtrl.value = iDay+"/"+iMonth+"/"+iYear; //Here, you could modify the locale as you need !!!!
  for (i in goSelectTag)
  	goSelectTag[i].style.visibility = "visible";
  goSelectTag.length = 0;
  if (this.checkUpdate) {
	  updateItem();
  }
}

function fSetSelected(aCell){
  var iOffset = 0;
  var iYear = parseInt(tbSelYear.value);
  var iMonth = parseInt(tbSelMonth.value);

  self.event.cancelBubble = true;
  aCell.bgColor = gcBG;
  with (aCell.children["cellText"]){
  	var iDay = parseInt(innerText);
  	if (color==gcGray)
		iOffset = (Victor<10)?-1:1;
	iMonth += iOffset;
	if (iMonth<1) {
		iYear--;
		iMonth = 12;
	}else if (iMonth>12){
		iYear++;
		iMonth = 1;
	}
  }
  fSetDate(iYear, iMonth, iDay);
}

function Point(iX, iY){
	this.x = iX;
	this.y = iY;
}

function fBuildCal(iYear, iMonth) {
	var iYear=iYear-543;
  var aMonth=new Array();
  for(i=1;i<7;i++)
  	aMonth[i]=new Array(i);

  var dCalDate=new Date(iYear, iMonth-1, 1);
  var iDayOfFirst=dCalDate.getDay();
  var iDaysInMonth=new Date(iYear, iMonth, 0).getDate();
  var iOffsetLast=new Date(iYear, iMonth-1, 0).getDate()-iDayOfFirst+1;
  var iDate = 1;
  var iNext = 1;

  for (d = 0; d < 7; d++)
	aMonth[1][d] = (d<iDayOfFirst)?-(iOffsetLast+d):iDate++;
  for (w = 2; w < 7; w++)
  	for (d = 0; d < 7; d++)
		aMonth[w][d] = (iDate<=iDaysInMonth)?iDate++:-(iNext++);
  return aMonth;
}

function fDrawCal(iYear, iMonth, iCellHeight, iDateTextSize) {
  var WeekDay = new Array("อา","จ","อ","พ","พฤ","ศ","ส");
  var styleTD = " bgcolor='"+gcBG+"' valign='middle' align='center' height='"+iCellHeight+"' style='font:normal "+iDateTextSize+" Microsoft Sans serif;";            //Coded by Liming Weng(Victor Won)  email:victorwon@netease.com

  with (document) {
	write("<tr height='10'>");
	for(i=0; i<7; i++)

		write("<td "+styleTD+"color:#990099' ><font face='Microsoft sans serif' size='1' style='font-family:MS Serif; font-size:14px;'>" + WeekDay[i] + "</font></td>");
	write("</tr>");

  	for (w = 1; w < 7; w++) {
		write("<tr>");
		for (d = 0; d < 7; d++) {
			write("<td id=calCell "+styleTD+"cursor:hand;' onMouseOver='this.bgColor=gcToggle' onMouseOut='this.bgColor=gcBG' onclick='fSetSelected(this)'>");
			write("<font face='Microsoft Sans serif' size='1'' id=cellText Victor='Liming Weng' style='font-family:MS Serif; font-size:14px;' > </font>");
			write("</td>")
		}
		write("</tr>");
	}
  }
}

function fUpdateCal(iYear, iMonth) {
  myMonth = fBuildCal(iYear, iMonth);
  var i = 0;
  for (w = 0; w < 6; w++)
	for (d = 0; d < 7; d++)
		with (cellText[(7*w)+d]) {
			Victor = i++;
			if (myMonth[w+1][d]<0) {
				color = gcGray;
				innerText = -myMonth[w+1][d];
			}else{
				if (myMonth[w+1][d]==giDay)
				{
				color = "#0000FF";
				innerText = myMonth[w+1][d];
				}
				else 
				{
				color = ((d==0)||(d==6))?"red":"black";
				innerText = myMonth[w+1][d];
				}
			}
		}
}

function fSetYearMon(iYear, iMon){
  tbSelMonth.options[iMon-1].selected = true;
  for (i = 0; i < tbSelYear.length; i++)
	if (tbSelYear.options[i].value == iYear)
		tbSelYear.options[i].selected = true;
  fUpdateCal(iYear, iMon);
}

function fPrevMonth(){
  var iMon = tbSelMonth.value;
  var iYear = tbSelYear.value;

  if (--iMon<1) {
	  iMon = 12;
	  iYear--;
  }

  fSetYearMon(iYear, iMon);
}

function fNextMonth(){
  var iMon = tbSelMonth.value;
  var iYear = tbSelYear.value;

  if (++iMon>12) {
	  iMon = 1;
	  iYear++;
  }

  fSetYearMon(iYear, iMon);
}

function fToggleTags(){
  with (document.all.tags("SELECT")){
 	for (i=0; i<length; i++)
 		if ((item(i).Victor!="Won")&&fTagInBound(item(i))){
 			item(i).style.visibility = "hidden";
 			goSelectTag[goSelectTag.length] = item(i);
 		}
  }
}

function fTagInBound(aTag){
  with (VicPopCal.style){
  	var l = parseInt(left);
  	var t = parseInt(top);
  	var r = l+parseInt(width);
  	var b = t+parseInt(height);
	var ptLT = fGetXY(aTag);
	return !((ptLT.x>r)||(ptLT.x+aTag.offsetWidth<l)||(ptLT.y>b)||(ptLT.y+aTag.offsetHeight<t));
  }
}

function fGetXY(aTag){
  var oTmp = aTag;
  var pt = new Point(-100,0);
  do {
  	pt.x += oTmp.offsetLeft;
  	pt.y += oTmp.offsetTop;
  	oTmp = oTmp.offsetParent;
  } while(oTmp.tagName!="BODY");
  return pt;
}

// Main: popCtrl is the widget beyond which you want this calendar to appear;
//       dateCtrl is the widget into which you want to put the selected date.
// i.e.: <input type="text" name="dc" style="text-align:center" readonly><INPUT type="button" value="V" onclick="fPopCalendar(dc,dc);return false">
var checkUpdate;
function fPopCalendar(popCtrl, dateCtrl, checkUpdate){
  gdCtrl = dateCtrl;
  var ciYear = giYear;
  var ciMonth = giMonth;
  var ciDay = giDay;
  if(dateCtrl.value != ""){
	var temp = dateCtrl.value.split("/");
	giYear = temp[2];
	giMonth = temp[1];
	giDay = temp[0];
  }
  fSetYearMon(giYear, giMonth);
  
  giYear = ciYear;
  giMonth = ciMonth;
  giDay = ciDay;
  
  var point = fGetXY(popCtrl);
  with (VicPopCal.style) {
  	left = point.x;
	top  = point.y+popCtrl.offsetHeight+1;
	width = VicPopCal.offsetWidth;
	height = VicPopCal.offsetHeight;
	fToggleTags(point);
	visibility = 'visible';
  }
  VicPopCal.focus();
  this.checkUpdate = checkUpdate;
}

function fHideCal(){
  var oE = window.event;
  if ((oE.clientX>0)&&(oE.clientY>0)&&(oE.clientX<document.body.clientWidth)&&(oE.clientY<document.body.clientHeight)) {
	var oTmp = document.elementFromPoint(oE.clientX,oE.clientY);
	while ((oTmp.tagName!="BODY") && (oTmp.id!="VicPopCal"))
		oTmp = oTmp.offsetParent;
	if (oTmp.id=="VicPopCal")
		return;
  }
  VicPopCal.style.visibility = 'hidden';
  for (i in goSelectTag)
	goSelectTag[i].style.visibility = "visible";
  goSelectTag.length = 0;
}

var gMonths = new Array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม");

with (document) {
write("<Div id='VicPopCal' onblur='fHideCal()' onclick='focus()' style='POSITION:absolute;visibility:hidden;border:0px solid;width:10;z-index:70;'>");
write("<table border='1' cellspacing='0' cellpadding='2' bordercolor='#DDDDDD' bgcolor='#FFFFFF'>");
write("<TR height=15>");
write("<td valign='middle' align='center'><input type='button' name='PrevMonth' value='<' style='height:15;width:15;FONT:8Fixedsys' onClick='fPrevMonth()' onblur='fHideCal()'>");
write("&nbsp;&nbsp;<select style='height:15;' name='tbSelMonth' onChange='fUpdateCal(tbSelYear.value, tbSelMonth.value)' Victor='Won' onclick='self.event.cancelBubble=true' onblur='fHideCal()'>");
for (i=0; i<12; i++)
	write("<option value='"+(i+1)+"'>"+gMonths[i]+"</option>");
write("</SELECT>");
write("&nbsp;&nbsp;<SELECT style='height:15;' name='tbSelYear' onChange='fUpdateCal(tbSelYear.value, tbSelMonth.value)' Victor='Won' onclick='self.event.cancelBubble=true' onblur='fHideCal()'>");
for(i=2426;i<2560;i++)
	write("<OPTION value='"+i+"'>&nbsp;&nbsp;"+i+"&nbsp;&nbsp;</OPTION>");
write("</SELECT>");
write("&nbsp;&nbsp;<input type='button' name='PrevMonth' value='>' style='height:15;width:15;FONT:8Fixedsys' onclick='fNextMonth()' onblur='fHideCal()'>");
write("</td>");
write("</TR><TR>");
write("<td align='center'>");
write("<DIV><table width='100%' border='0' cellpadding='2'>");
fDrawCal(giYear, giMonth, 7, 7);
write("</table></DIV>");
write("</td>");
write("</TR><TR><TD align='center'>");
giYear=giYear+543;
write("<B style='cursor:hand' onclick='fSetDate(giYear,giMonth,giDay); self.event.cancelBubble=true'><font face='Microsoft Sans serif' size='2' style='font-family:MS Serif; font-size:14px; color:#333333'>วันนี้ :&nbsp;&nbsp;"+giDay+"&nbsp;"+gMonths[giMonth-1]+"&nbsp;"+giYear+"</B></font>");
write("</TD></TR>");write("</TD></TR>");
write("</TABLE></Div>");
}
// End -- Coded -->

//Another add by Nate.
function CheckNumeric(){
   // Get ASCII value of key that user pressed
   var key = window.event.keyCode;
   // Was key that was pressed a numeric character (0-9, '-', '.' )?
   if ( key > 44 && key < 58 )
	      return; // if so, do nothing
   else
	 alert("กรุณากรอกเฉพาะตัวเลขเท่านั้น");
      window.event.returnValue = null; 
	  // otherwise, 
	  // discard character
}

function roundFloat(fltValue) {
	//return Math.round(fltValue * 100) / 100;
	return OKStrOfNe(fltValue,2);
}

function OKStrOfNe(X, N) { // X>=0
  var p = Number('1e'+N), S = new String(Math.round(X*p)/p)
  if (S.indexOf('e') == -1 ) {
    while ( (p = S.indexOf('.')) == -1 ) { S += '.' }
    while ( S.length <= p+N ) { S += '0' } }
  return S
}

//document.onkeydown = checkKey;

function checkKey(oEvent){
  var oEvent = (oEvent)? oEvent : event;
  var oTarget =(oEvent.target)? oEvent.target : oEvent.srcElement;
  //if(oTarget.type=="text" && oEvent.keyCode==13){
   if(oEvent.keyCode==13){
    //return false;
   oEvent.keyCode = 9;
  }
}

function CommaFormatted(amount){
	var delimiter = ","; // replace comma if desired
	var a = amount.split('.',2);
	var d = a[1];
	var i = parseInt(a[0]);
	if(isNaN(i)) { return ''; }
	var minus = '';
	if(i < 0) { minus = '-'; }
	i = Math.abs(i);
	var n = new String(i);
	var a = [];
	while(n.length > 3)
	{
		var nn = n.substr(n.length-3);
		a.unshift(nn);
		n = n.substr(0,n.length-3);
	}
	if(n.length > 0) { a.unshift(n); }
	n = a.join(delimiter);
	if(d.length < 1) { amount = n; }
	else { amount = n + '.' + d; }
	amount = minus + amount;
	return amount;
}
// end of function CommaFormatted()

function checkslash(obj) { 
	if ( (event.keyCode < 48 || event.keyCode > 57) && (event.keyCode < 96 || event.keyCode > 105) ){
		if(event.keyCode != 9 && event.keyCode != 13 && event.keyCode != 17){ obj.value = "";}
		event.keyCode = null;
		obj.focus();
	}
	else {
		if (obj.value.length  == 2 || obj.value.length ==5){
			obj.value = obj.value + "/";
		}
		if(obj.value.length  == 10){
			var date = obj.value.split('/');
			var year = parseFloat(date[2]) - 543;
			var month = parseFloat(date[1]);
			var day = parseFloat(date[0]);
		//	alert("dat = "+day);
		//	alert("09 = "+parseInt("01"));
		//	alert("month = "+month);
			if (year %4 == 0){
				var dayM2 = 29;
			}
			else{
				var dayM2 = 28;
			}
			if  (day < 1){
				alert("ป้อนวันผิด");
				obj.value = "";
				obj.focus();
			}
			else if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12){
				if  (day > 31){
					alert("ป้อนวันผิด");
					obj.value = "";
					obj.focus();
				}
			}
			else if(month == 4 || month == 6 || month == 9 || month == 11){
				if(day > 30){
					alert("ป้อนวันผิด");
					obj.value = "";
					obj.focus();
				}
			}else if(month == 2){
				if(day > dayM2){
					alert("ป้อนวันผิด");
					obj.value = "";
					obj.focus();
				}
			}else{
				alert("ป้อนเดือนผิด");
				obj.value = "";
				obj.focus();
			}
		}
	}
}
