function zoom (w,h) {
 win = window.open("", "win", "width="+w+", height="+h+", scrollbars=no, toolbar=no");
 win.moveTo(50,50);
}

