function add() {
var newobj = document.createElement("input");
var bodyobj = document.getElementsByTagName("body")[0];
newobj.type = "text";
newobj.className = "marsDate";
newobj.readOnly = "readonly";
newobj.onclick = function(){
showMarsFnDate(this);
}
bodyobj.appendChild(newobj);
}