   function launchConfigurator(strScreen)
   {
      var strLogin="content/xpress/login.jsp";
      var strhome="parts/select_proxy_for_incysive.jsp";
      var strConfigurator="login.jsp?callfrom=incysive";
      var strOrderStatus="content/xpress/orderstatus/default.jsp";
      var strOnlineXpress="content/xpress/default.jsp";
      var strSerachParts="catalog/PartsSearch.jsp";
      var strOrdersLearnmore="content/xpress/createorders/home/about.jsp";
      var strRegister="content/xpress/register/default.jsp";
      var strHome="content/default.htm";
      var strCreateOrders="content/xpress/createorders/default.jsp";
    //###### Update this to match the configurator URL #####################
      var strPath="http://64.115.15.69/prdconf/";
    //########################################################################  
      
      if (strScreen=="login")
      	strPath=strPath+strLogin;
      else if (strScreen=="selector")
      	strPath=strPath+strhome;
      else if (strScreen=="configurator")
      	strPath=strPath+strConfigurator;
      else if (strScreen=="onlinexpress")
      	strPath=strPath+strOnlineXpress;
      else if (strScreen=="partsselector")
      	strPath=strPath+strSerachParts;
      else if (strScreen=="home")
      	strPath=strPath+strHome;
      else if (strScreen=="orderstatus")
      	strPath=strPath+strOrderStatus;
      else if (strScreen=="partslearnmore")
      	strPath=strPath+strOrdersLearnmore;
      else if (strScreen=="register")
      	strPath=strPath+strRegister;
      else if (strScreen=="createorders")
      	strPath=strPath+strCreateOrders;	
      document.location.href=strPath;
   }


