function controlshow(id,d){
var show = document.getElementById(id);
var border = document.getElementById('div_1001');
	if(d == 1){
		show.style.display = 'block';
		border.style.display = 'block'
	}else{
		show.style.display = 'none';
		border.style.display = 'none';
	}
}
function $id(_sId){return document.getElementById(_sId)}

function show(s){if (!$id(s)) return; $id(s).style.display = "block";}

function controlallshow(){
	show("control_header");
	show("control_logo");
	show("control_banner");
	show("control_bannerbg");
	show("control_hottel");
	show("control_scroll");
	show("control_uplink");
	show("control_cnav");
}

