// JavaScript Document

        <!--
                var gWindowWidth = 450;
                var gWindowHeight = 400;
                function init1() {
                        var st = 'width=' + gWindowWidth;
                        st += ',';
                        st += 'height=' + gWindowHeight;
                        st += ',';
                        var cw = (screen.width / 2) - (gWindowWidth / 2);
                        var ch = (screen.height / 2) - (gWindowHeight / 2);
                        if (navigator.userAgent.indexOf('MSIE') != -1) {
                                st += 'left=' + cw;
                                st +=',';
                                st += 'top=' + ch;
                        } else if (navigator.userAgent.indexOf('Mozilla') != -1) {
                                st += 'screenX=' + cw;
                                st += ',';
                                st += 'screenY=' + ch;
                        }
                        window.open('clinic/movie.htm', 'movie', st);
                }
                var gWindowWidth = 450;
                var gWindowHeight = 400;
                function init2() {
                        var st = 'width=' + gWindowWidth;
                        st += ',';
                        st += 'height=' + gWindowHeight;
                        st += ',';
                        var cw = (screen.width / 2) - (gWindowWidth / 2);
                        var ch = (screen.height / 2) - (gWindowHeight / 2);
                        if (navigator.userAgent.indexOf('MSIE') != -1) {
                                st += 'left=' + cw;
                                st +=',';
                                st += 'top=' + ch;
                        } else if (navigator.userAgent.indexOf('Mozilla') != -1) {
                                st += 'screenX=' + cw;
                                st += ',';
                                st += 'screenY=' + ch;
                        }
                        window.open('catarac/movie2.htm', 'movie', st);
                }

        // -->
