function launch(nURL,winName){
        nheight = 445;
        nwidth  = 550;
        var cx = (screen.Width - nwidth)/2;
        var nFeature = "height=" + nheight + ",width=" + nwidth + ",left=" + cx + ",toolbar=no,location=0,directories=no,status=0,menubar=0,scrollbars=0,resizable=no,top=0"
        newwin = open(nURL,"winName",nFeature);
   {newwin.top;
    newwin.focus();
}
}

