
function startWizard(cGRP){
 var windowWidth = 600;
 var windowHeight = 400;
 var nLeft, nTop, windowProps;

 nLeft = (screen.width - windowWidth)/2;
 nTop  = (screen.height - windowHeight)/2;

 windowProps = "top="+nTop+",left="+nLeft+",resizable=yes,width="+windowWidth+",height="+ windowHeight;

 url = "http://www.alaska-software.com/cgi-bin/waa1gate.isa?WAA_PACKAGE=ASQANDA&WAA_FORM=QAWizardByGroup&QGROUP="+cGRP;
 window.open(url, "popupPage", windowProps);
}
