
var doa_mm = document.getElementById("doa_mm");
var doa_dd = document.getElementById("doa_dd");
var doa_yy = document.getElementById("doa_yy");

var dod_mm = document.getElementById("dod_mm");
var dod_dd = document.getElementById("dod_dd");
var dod_yy = document.getElementById("dod_yy");

function setDOA() {
	var doa = document.getElementById("chk_in").value;
	
  doa_mm = document.getElementById("doa_mm").value=doa.split("/")[0];
  doa_dd = document.getElementById("doa_dd").value=doa.split("/")[1];
  doa_yy = document.getElementById("doa_yy").value=doa.split("/")[2];

//	alert(doa_mm+"/"+doa_dd+"/"+doa_yy);
}

function setDOD() {
  var dod = document.getElementById("chk_out").value;
	
  dod_mm = document.getElementById("dod_mm").value=dod.split("/")[0];
	dod_dd = document.getElementById("dod_dd").value=dod.split("/")[1];
  dod_yy = document.getElementById("dod_yy").value=dod.split("/")[2];

//	alert(dod_mm+"/"+dod_dd+"/"+dod_yy);
}
