function setValue(id,value)
{
	$(id).innerHTML = value;
}

//获得对象
function $(id)
{
//	alert(id);
  return document.getElementById(id);
}
