function NewWindow(v,h,scroll,resize) {
 window.open("","NewWindow",",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable="+resize+",left=5,top=5,width="+v+",height="+h);
}

function NewWindowEditor(scroll,resize) {
 var sw = screen.width * 0.82;
 var sh = screen.height * 0.82;
 window.open("","NewWindow",",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable="+resize+",left=5,top=5,width="+sw+",height="+sh);
}