<!--

function launchpopupscrollNew(url, name, width, height,scroll) {

  if(typeof(mypopwnd)!="undefined"){
    if (mypopwnd && mypopwnd.open && !mypopwnd.closed){
      mypopwnd.close();
    }
  }
  
   winSet = "toolbar=no,location=no,directories=no,menubar=no,scrollbars="+scroll+",resizable=no";
   winSet += ",width="+width +",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
   mypopwnd = window.open(url, name, winSet);
   mypopwnd.window.focus();
}

// -->