<SCRIPT LANGUAGE="javascript">
<!--
function show()
{
    //  document.write("haihello");      
      var div1 = document.getElementById( "div1" );
      var div2 = document.getElementById( "div2" );
      var div3 = document.getElementById( "div3" );
      if (document.forms[0].Course.value == "Demystifying Occlusion") 
      {
                         div1.style.display = "inline";
			 div2.style.display = "none";
			 div3.style.display = "none";
      }
      else if (document.forms[0].Course.value == "Mastery of Esthetics on Implants and Teeth") 
      {
                         div2.style.display = "inline";
			 div1.style.display = "none";
			 div3.style.display = "none";
      }
	  else if (document.forms[0].Course.value == "Treating the Worn Dentition") 
      {
                         div3.style.display = "inline";
			 div1.style.display = "none";
			 div2.style.display = "none";
      }	 
	  else
	  		document.write("Invalid option");
}
//-->
</SCRIPT>// JavaScript Document