
/* Claja additions for speed */
function HideContent(d) {
	document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
	document.getElementById(d).style.display = "block";
}

function ReverseDisplay(d) {
	if(document.getElementById(d).style.display == "block") { document.getElementById(d).style.display = "none"; }
	else { document.getElementById(d).style.display = "block"; }
}

function copy() {
 	holdtext.innerText = copytext1.innerText;
	Copied = holdtext.createTextRange();
	Copied.execCommand("Copy");
}
