// JavaScript Document
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 == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

function init() {
	document.getElementById('ds_steps').style.display = "none";
	document.getElementById('imp_notes').style.display = "none";
	document.getElementById('hide1').innerHTML = '<p class="tra_small"><a href="javascript:HideContent(\'ds_steps\')">Hide Instructions</a></p>';
	document.getElementById('hide2').innerHTML = '<p class="tra_small"><a href="javascript:HideContent(\'imp_notes\')">Hide Instructions</a></p>';
}

window.onload = init;