// JavaScript Document<!--var myWindfunction doNew1(features) {    if (!myWind || myWind.closed) {        myWind = window.open(features,"subWindow","HEIGHT=400,WIDTH=700")    } else{        // bring existing subwindow to the front        myWind.focus()    }}// --><!--var myWindfunction doNew(features) {    if (!myWind || myWind.closed) {        myWind = window.open(features,"subWindow","HEIGHT=410,WIDTH=700")    } else{        // bring existing subwindow to the front        myWind.focus()    }}// -->