function show(id)
{
var obj = document.getElementById(id);
	obj.style.display = "";
}
function hide(id)
{
var obj = document.getElementById(id);
	obj.style.display = "none";
}
window.onload = function () 
{
	hide('more');
	hide('clos');
	hide('wel');
	show('more');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}