function setFOView() {
	var all = $$(['#cntView table th', '#cntView table td']);
	all.each(function(el){
		el.noWrap = false;
	});
	all = $$('#cntView table th');
	all[0].width = '30%';
	all[1].width = '20%';
	all[2].width = '20%';
	all[3].width = '20%';
	all[4].width = '10%';
	
	all = $$('#cntView table td img');
	all.each(function(el) {
		el.remove();
	});
}
function setPOView() {
	var all = $$(['#cntView table th', '#cntView table td']);
	all.each(function(el){
		el.noWrap = false;
	});
	all = $$('#cntView table th');
	all[0].width = '30%';
	all[1].width = '20%';
	all[2].width = '20%';
	all[3].width = '20%';
	all[4].width = '10%';
	
	all = $$('#cntView table td img');
	all.each(function(el) {
		el.remove();
	});
}
function setArchiveView() {
	var all = $$('#cntView table td table td:first');
	all.each(function(el) {
		el.width = '10px';
	});
}

