// JavaScript Document

function Waunch(page, width, height) { 
        window.open(page, "webstudio", "toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=no, width=700, height=700, top=" + (screen.height/2 - 700/2) + ", left=" + (screen.width/2 - 700/2) + "\""); 
    } 