﻿function toggle_display(id){

var box = document.getElementById(id);
var sts = box.style.display;

	if(!sts || sts == 'none'){
		
		box.style.display = 'none';
		box.style.display = 'block';
		
	}else{
		
		box.style.display = 'none';
		
	}

}
