// open link same window

function DoNav(theUrl){
	window.location.href=theUrl;
	}
	
	
// checkbox show/hide	

function showMe (it, box) {
  var vis = (box.checked) ? "block" : "none";
  document.getElementById(it).style.display = vis;
}
