

		function vizson_cbc_01(id,fontcolor,backgroundcolor,cursor)
		{
			// a: id of element
			// b: background_color
			// c: font color
			// d: cursor
			document.getElementById(id).style.color = fontcolor;
			document.getElementById(id).style.backgroundColor = backgroundcolor;
			document.getElementById(id).style.cursor= cursor;
		}


