// JavaScript Document

// Formatting the daste issue ti mm.dd.yyyy
      var myFormatDate = function(elCell, oRecord, oColumn, oData) {
      var oDate = oData;
      var corDate = ""; 
      var corMonth = ""; 
      if (oDate.getDate() < 10) {
       corDate = "0" };
      if (oDate.getMonth() < 9) {
       corMonth = "0" };
	    elCell.innerHTML = corDate + oDate.getDate() + "." + corMonth + (oDate.getMonth()+ 1)  + "." + oDate.getFullYear();
	    }; 
