function show(id){
var obj = document.getElementById(id);
	obj.style.display = "";
}
function hide(id){
var obj = document.getElementById(id);
	obj.style.display = "none";
}
window.onfocus = function (test1) {
	hide('more');
	hide('clos');
	hide('wel');
	show('more');
}