function blurTD(id){
	if(document.getElementById){
		var n=document.getElementById(id);
		if(n){n.className="formtd"}
		}
}

function focusTD(id){
	if(document.getElementById){
		var n=document.getElementById(id);
		if(n){n.className="formtdfocus"}
	}
}
