                var g_dlgEbook = null;


                function ebookViewWindow( targetURL, width, height, varArg )
                {
                        var szTop = "dialogTop: 0px; ";
                        var szLeft = "dialogLeft: 0px; ";
                        var sFeatures = szTop + szLeft + "dialogHeight: " + height + "px; dialogWidth: " + width + "px; center: no; edge: raised; help: no; status: no;";
                        var advanceArg = new Array();
                        advanceArg[0] = window;
                        var dlgWin = null;
                        var top = 0;
                        var left = 0;
                        //dlgWin =      window.open(targetURL,"eBook","top="+top+",left="+left+",width="+width+",height="+height+",location=no,menubar=no,status=yes, scrolbar=no, resizable=no");

                        if ( varArg ) {
                                dlgWin = window.showModelessDialog( targetURL, varArg, sFeatures );
                        } else {
                                dlgWin = window.showModelessDialog( targetURL, advanceArg, sFeatures );
                        }

                        return dlgWin;
                }

                function fullSCRViewWindow( targetURL, width, height, varArg )
                {
                        var dlgWin = null;
                        /*
                        if(window.screen.width>1024)
                                dlgWin = window.open(targetURL+"?"+varArg,"ezAlbum","width="+width+",height="+height+",channelmode=no, directories=no, status=no, titlebar=no, toolbar=no, resizable=no, scrollbars=no, menubar=no");
                        else
                        */
                        dlgWin = window.open(targetURL+"?"+varArg,"ezAlbum","top=0,left=0,width="+width+",height="+height+",channelmode=no, directories=no, status=no, titlebar=no, toolbar=no, resizable=no, scrollbars=no, menubar=no");
                        dlgWin.blur();
                        dlgWin.focus();

                        return dlgWin;
                }




        function vieweBook(fname,cname){
                        var width =  window.screen.width;
                        var height = window.screen.height;// - 34;
                        if ( width > height*2) width = width / 2;
                        var argVar = new Array();
                        argVar[0] = window;
                        argVar[1] = width-6;
                        argVar[2] = height-32;
                        argVar[3] = "";
                        argVar[4] = fname;
                        if(cname) {
                                g_dlgEbook = fullSCRViewWindow("http://www.feelyoung.co.kr/bookmaker/prg/"+cname+"/ebook.htm", width,height,fname);
                        }
                        else {
                                g_dlgEbook = fullSCRViewWindow("http://www.feelyoung.co.kr/bookmaker/prg/skin01/ebook.htm", width,height,fname);
                        }
        }



		function viewEbook_open(fname,cname){
               var width =  window.screen.width;
                        var height = window.screen.height;// - 34;
                        if ( width > height*2) width = width / 2;
                        var argVar = new Array();
                        argVar[0] = window;
                        argVar[1] = width-6;
                        argVar[2] = height-32;
                        argVar[3] = "";
                        argVar[4] = fname;
                        if(cname) {
                                g_dlgEbook = fullSCRViewWindow("http://www.toyashop.net/menual_ebook/prg/"+cname+"/ebook.htm", width,height,fname);
                        }
                        else {
                                g_dlgEbook = fullSCRViewWindow("http://www.toyashop.net/menual_ebook/prg/ebook.htm", width,height,fname);
                        }
        }


 