
function launchpopupscroll(url, name, width, height,scroll) {
   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.focus();
   disableSurvey=true;
  }

function launchpopunder(url, name, width, height) {
   winSet = "toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes, resizable=yes";
   winSet += ",width="+width +",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
   mypopwnd = window.open(url, name, winSet);
   mypopwnd.focus();
   disableSurvey=true;
  }

function launchpopup(url, name, width, height) {
   launchpopupscroll(url, name, width, height,"yes");
  }

function launchsuccesspopup(url, name, width, height) {
   winSet = "toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=yes";
   winSet += ",width="+width +",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
   mypopwnd = window.open(url, name, winSet);
   mypopwnd.focus();
   disableSurvey=true;
  }

function launchwindow(url) {
   winSet = "toolbar=yes,location=no,directories=no,menubar=yes,scrollbars=yes,resizable=yes";
   mywnd = window.open(url, '', winSet);
   disableSurvey=true;
  }

function launchFullWindow(url) {
   winSet = "toolbar,location,directories,status,scrollbars,menubar,resizable";
   mywnd = window.open(url, '', winSet);
   disableSurvey=true;
  }

function sympaticoPopup()
{
   launchpopup('popupHelp.act?context=adZZ', 'popup', 620, 400);
}
