function setCellpadding() {
	var cell = document.getElementById("data");
	cell.setAttribute("cellpadding", "10");
}
function resetCellpadding() {
	var cell2 = document.getElementById("data");
	cell2.setAttribute("cellpadding", "0");
}
function setBorderSpacing() {
	var cell3 = document.getElementById("data");
	cell3.style.borderCollapse = "separate";
	cell3.style.borderSpacing = "10px";
}
function resetBorderSpacing() {
	var cell4 = document.getElementById("data");
	cell4.style.borderCollapse = "collapse";
	cell4.style.borderSpacing = "0px";
}
