// Default Included JS Functions

function dn(){
	// Empty function for use in 'href' tags
}

function showElement(showID){
	// Shows elements with the ID of hideID
	document.getElementById(showID).style.display = "block";
}

function hideElement(hideID){
	// Hides elements with the ID of hideID
	document.getElementById(hideID).style.display = "none";
}

// End Default Included JS Functions
