
function hideBox(id){
	var box = document.getElementById(id);
	if(box && box.style){
		document.getElementById(id).style.display='none';
		return false;
	}else
		return true;
}

function showBox(id){
	var box = document.getElementById(id);
	if(box && box.style){
		document.getElementById(id).style.display='block';
		return false;
	}else
		return true;
}
