function $(obj){
	return document.getElementById(obj);
}
function show_display(obj){
	$(obj).style.display=='none'?$(obj).style.display='':$(obj).style.display='none';
}
