

var shareStatus = false;
var bookStatus = false;


function toggleShare() {
	if (shareStatus == true) {
		document.getElementById('model_box_share').style.display = "none";
		shareStatus = false;
	}
	else {
		document.getElementById('model_box_share').style.display = "block";
		shareStatus = true;
	}
}


function toggleBook() {
	
}
