function hide(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function show(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
function toggle(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "block") { document.getElementById(d).style.display = "none"; }
else { document.getElementById(d).style.display = "block"; }
}

function b_hide(d) {
if(d.length < 1) { return; }
	document.getElementById(d).style.background = "url(img/dot_div.gif) bottom left repeat-x";
}

function b_show(d) {
if(d.length < 1) { return; }
	document.getElementById(d).style.background = "#d6ebff";
}