нужно быть проще:
<style type="text/css">
td {
background: #4D7481;
width: 20px;
height: 20px;
}
</style>
<script type="text/javascript">
window.onload = function() {
var table = document.createElement('table'), i = 5;
while(i--) {
var tr = table.insertRow(-1), j = 5;
while(j--) {
tr.insertCell(-1);
}
}
document.body.appendChild(table);
};
</script>