			function adaShowHide(ref, classRef) {
				eval(ref).className = classRef;
			}
			function setADALinks() {
				var adaLink = $$("#ada a")[0];
				var dialogue = $("dialogue");
				adaLink.onfocus = function() {
					adaShowHide(this,"showADALink");
					this.focus();
				}
				adaLink.onblur = function() {
					adaShowHide(this,"hideADALink");
				}
				adaLink.onclick = function() {
					dialogue.style.display = "block";
					adaShowHide(this,"hideADALink");
					return false;
				}
			}
			
			function createCloseADALink() {
				var dialogue = $("dialogue");
				var closePara = document.createElement("p");
				closePara.style.marginBottom = "20px";
				closePara.style.fontWeight = "bold";
				var closeLink = document.createElement("a");
				var closeString = "Hide Flash Movie's Script";
				var closeText = document.createTextNode(closeString);
				closeLink.setAttribute("href", "#");
				closeLink.setAttribute("title", closeString);
				closeLink.onclick = function() {
					dialogue.style.display = "none";
					return false;
				};
				closeLink.appendChild(closeText);
				closePara.appendChild(closeLink);
				dialogue.appendChild(closePara);
			}
			
			function createADALinks() {
				var dialogue = $("dialogue");
				dialogue.style.display = "none";
				dialogue.style.paddingTop = "0.4em";
				var wrap = $("wrapper");
				var para = document.createElement("p");
				para.setAttribute("id", "ada");
				var href = document.createElement("a");
				href.setAttribute("href", "#");
				href.className = "hideADALink";
				href.setAttribute("title", "View Flash Movie's Script");
				var read = document.createTextNode("Read the movie's script");
				href.appendChild(read);
				para.appendChild(href);
				wrap.insertBefore(para, dialogue);
				/*
					Creates the following XHTML...
					
                    <p id="ada">
                        <a href="#" class="hideADALink" title="View Flash Movie's Script">Read the movie's script</a>
                    </p>
                    <!-- end ada -->
				*/
			}