﻿function hide(obj){
	if(!obj)return;
	if("object"!=(""+typeof(obj)).toLowerCase())obj=document.getElementById(obj);
	if(!obj)return;
	if(obj.style)obj.style.display="none";
}
function show(obj){
	if(!obj)return;
	if("object"!=(""+typeof(obj)).toLowerCase())obj=document.getElementById(obj);
	if(!obj)return;
	if(obj.style){
		obj.style.display="";
		try{obj.focus();}catch(e){}
	}
}