function tbl_colorchange(rowid, newcolor) {
tablerow=document.getElementById(rowid);
	tablerow.className=newcolor;
}


