function _boxfocus(id,inout) {

	var tid='t'+id;
	if(inout=="in") {
		document.getElementById(id).style.borderColor='red';
		document.getElementById(tid).style.color='#f57e11';
	} 
	else {
		document.getElementById(id).style.borderColor='#999999';
		document.getElementById(tid).style.color='#999999';
	}
}