function zoom(url, width, height) {
      
        var windowX = Math.ceil( (window.screen.availWidth-width) / 2 );
        var windowY = Math.ceil( (window.screen.availHeight-height) / 2 );
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
        Win.moveTo  ( Math.ceil( windowX ) , Math.ceil( windowY ) );
}
function zoom_k(url, width, height) {

        var windowX = Math.ceil( (window.screen.availWidth-width) / 2 );
        var windowY = Math.ceil( (window.screen.availHeight-height) / 2 );
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
        Win.moveTo  ( Math.ceil( windowX ) , Math.ceil( windowY ) );
}
function zoom_info(url, width, height) {
      
        var windowX = Math.ceil( (window.screen.availWidth-width) / 2 );
        var windowY = Math.ceil( (window.screen.availHeight-height) / 2 );
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
        //Win.setTimeout("self.close();",10000);
        Win.moveTo( Math.ceil( windowX ) , Math.ceil( windowY ) );
}
