function disp_txt(aid, dataid){
	if(document.getElementById){
		document.getElementById(dataid).style.display='inline';
		document.getElementById(aid).style.display='none';
	}
	return false;
}
function hide_txt(dataid){
	if(document.getElementById){
		document.getElementById(dataid).style.display='none';
	}
	return false;
}
