// JavaScript Document

function show(id){
	if(document.getElementById(id).style.display == ""){
		showDBox1 = "none";
	}else{
		showDBox1 = "";
	}
	document.getElementById(id).style.display = showDBox1;
}
