function cj_chg_img(id, value) {
	picture = new Image();
	picture.src = value;
	document.getElementById(id).src = picture.src;
}

function chg_tbl_bground(id, c) {
	document.getElementById(id).style.backgroundColor = c;
}
