Вот уменьшенная версия скрипта (создаёт один класс):
screen_width=screen.width
screen_height=screen.height
main_table_width=screen_width
if (document.styleSheets[0].insertRule()) {
document.styleSheets[0].insertRule("table.main_table {width: "+main_table_width+"px;}",0)
} else {
if (document.styleSheets[0].addRule()) {
document.styleSheets[0].addRule("table.main_table","width: "+main_table_width+"px;")
}
}