// JavaScript Document
function DispView(tdid) {
	document.getElementById(tdid).style.display="";
}

function DispNone(tdid) {
	document.getElementById(tdid).style.display="none";
}