========================================

This is JavaScript Byte Budget..it has height and width both as variables so after you write the cell, then you must tell the browser how wide it is and how tall. You do this by writing them in the string. This is HTML so put the them in quotes, then you must end the cell.




<script>
var t = "<center><table border=0 cellspacing=0 cellpadding=0><tr height=;";

var pos = "<td bgcolor=black gradcolor=gold gradangle=90 width=";

var neg = "<td bgcolor=black gradcolor=red gradangle=-90 width=";

var E = "></td>";

var R = ">";

var et = "</tr></table></center>";

with(document){

write(t+"10"+R+pos+"20"+E+neg+"20"+E+et);

write(t+"20"+R+neg+"25"+E+pos+"25"+E+neg+"20"+E+pos+"20"+E+neg+"25"+E+pos+"25"+E+et);

write(t+"10"+R+pos+"20"+E+neg+"20"+E+pos+"20"+E+neg+"20"+E+pos+"20"+E+neg+"20"+E+pos+"20"+E+neg+"20"+E+pos+"20"+E+neg+"20"+E+et);

}
</script>



Back