// JavaScript Document
function tr(id,status){
	if($(id)){
		a = $(id);
			a.className = (status==0)?"transpon":"transpoff";
		}
	}
