function order_page_redesign() {
	tbl = document.getElementById('main_table');
	i = 0;
	for (j=1; j<tbl.rows.length; j++) {
		text = tbl.rows[j].innerHTML.toLowerCase();
		if (text.indexOf('<input')>=0 ||
			text.indexOf('<textarea')>=0 ||
			text.indexOf('<select')>=0) {
			i++;

			if (i%2==0) { tbl.rows[j].style.background = '#EDEDED'; }
		}
	}
}
