﻿<!--
//changeTopicCopy('')	//Initialize default copy for nav links on page load
function changeTopicCopy(topicID)
{
    
	var topicHeaderCopy1
	var topicCopy1
	var topicCopy2

	document.getElementById("technical_specifications_topic_01").style.display = "none"
	document.getElementById("technical_specifications_topic_01").style.visibility = "hidden";
	document.getElementById("technical_specifications_topic_02").style.display = "none"
	document.getElementById("technical_specifications_topic_02").style.visibility = "hidden";

	switch (topicID)
	{
	case 'technical_specifications_topic_01':
		//topicHeaderCopy1 = '<div align="center"></div>'
		//topicCopy1 = '<div align="left" class="copy01"></div>'
		//topicCopy2 = ''
		document.getElementById("technical_specifications_topic_01").style.display = "inline"
		document.getElementById("technical_specifications_topic_01").style.visibility = "visible";
        //document.getElementById("technical_specifications_topic_01").innerHTML = topicCopy1
		break;
	case 'technical_specifications_topic_02':
		//topicHeaderCopy1 = '<div align="center"></div>'
		//topicCopy1 = '<div align="left" class="copy01"></div>'
		//topicCopy2 = ''
		document.getElementById("technical_specifications_topic_02").style.display = "inline"
		document.getElementById("technical_specifications_topic_02").style.visibility = "visible";
        //document.getElementById("technical_specifications_topic_02").innerHTML = topicCopy1
		break;
	default:
		topicHeaderCopy1 = ''
		topicCopy1 = ''
		topicCopy2 = ''
		break;
	}
   
}
// -->
