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 Dis1(){
	//var divwin=dhtmlwindow.open('divbox', 'div', 'Dis1', 'Legal Disclaimer', 'width=412px,height=243px,left=200px,top=150px,resize=0,scrolling=0'); return false
//}