// JavaScript Document
	
	var Captions = new Array("HOME", "INFORMATION", "SERVICES", "EXTENSIONS", "HELP", "CONTACTS");
	var Links = new Array("index.aspx", "info.aspx", "services.aspx", "extensions.aspx", "help/index.html", "contacts.aspx");

	function thisMovie(movieName) {
		var isIE = navigator.appName.indexOf("Microsoft") != -1;
		return (isIE) ? window[movieName] : document[movieName];
	}	
	function movieIsLoaded (theMovie) {	
		return (typeof(theMovie) != "undefined") ? (theMovie.PercentLoaded() == 100) : (false);	
	}
	function calcHeight(){
		var frameHeight = document.getElementById('demo').contentWindow.document.body.scrollHeight;
		document.getElementById('demo').height = frameHeight + 10;
	}
	function changeDemo(num, count){
		document.getElementById("demo_num").innerHTML = num + ' of ' + count;
	}
	function sendRequest(subject){
		window.open('../request.aspx', 'sms', 'width=520, height=400, top=100, left=100, resizable=no, scrollbars=yes');
	}