document.write('<style type="text/css">');
document.write('.js_hidden{display: none;}');
document.write('</style>');

function swapDisplay(x) {
	x.style.display = (x.style.display=="block") ? "none" : "block";
}


function show(x) {
	swapDisplay(document.getElementById(x));
}

