// JavaScript Document

 function showPopupWindowRename(name) 
        {
            var width = 700;
            var height = 400;
            
            var left = (window.screen.width-width)/2;
            var top = (window.screen.height-height)/2;
            
            var window2 = window.open("../content/"+ name,"Text","status=no,height=320,width=490,resizable=no,left=" + left + ",top=" + top + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
            window2.focus();
        }

