    function newWindow(url, width, height){
    		newWin = window.open(url, 'submitWindow','width=' + width + ',height=' + height + ',resizable=1,status=no,scrollbars=yes');
    		newWin.focus()
    }
    function newfullWindow(url){
    		newWin = window.open(url, 'externalwindow','resizable=1,status=yes, location=yes, menubar=yes, toolbar=yes, scrollbars=yes');
    		newWin.focus()
    }