		function open_flash(url_link, width, height) {
			var args = 'width=' + width + ', height=' + height + ', resizable=0';
			var remote = window.open(url_link, 'TheRemote', args);

			if (remote != null) {
				if (remote.opener == null) {
					remote.opener = self;
					remote.focus();
				}
			}
		}


		function launchDemo(){
			open_flash('http://knowledgefountain.com/view/demo/demo.jsp', 640, 360);
		}