function newWindow(newURL, innerWidth, innerHeight, scrollbar, resizable, toolbar, menubar) {
    if (scrollbar == null) {
        scrollbar = "no";
    }
    if (resizable == null) {
        resizable = "yes";
    }
	   if (toolbar == null) {
        toolbar = "no";
    }
	   if (menubar == null) {
        menubar = "no";
    }
    
	var appWindow = window.open(newURL, "appWin", 
	+ "location=no,statusbar=yes,resizable=" + resizable + ",scrollbars=" + scrollbar + ",left=0,top=0,width="
	+ innerWidth + ",height=" + innerHeight+ ",toolbar=" + toolbar+ ",menubar=" + menubar);
}
