function paramtest(text1)
{
//***********************************************************************
//*
//* Function  
//*
//* Language:  JavaScript1.1
//*
//* Inputs:
//*   object   form object
//*
//* Returns:
//*   none
//*
//* Limitations:
//*   
//*   
//*
//* Author:
//*  Dr. Fred Tillman
//*  National Research Council Research Associate
//*  Regulatory Support Branch
//*  Ecosystems Research Division
//*  National Exposure Research Laboratory
//*  United States Environmental Protection Agency
//*  960 College Station Road
//*  Athens, Georgia 30605
//*  tillman.fred@epa.gov
//* 
//*
//* Reference:
//*  Flanagan, D., 1997, JavaScript: The Definitive Guide, 2ed, O'Reilly and Associates
//*
//* Created: 4-14-2004
//*
//* Required functions: none
//*
//* Required scripts: none
//*
//***********************************************************************
  

     var g = document.vaporsite;
     var A = Input(g.A.value);
     var Acap = Input(g.Acap.value);
     var B = Input(g.B.value);
     var C = Input(g.C.value);

//* Critical parameters will be defined as follows: c1=(Vb/Ab); c2=Lt; c3=Dt,eff; c4=Eb; c5=Lcrack; c6=Deff,crack; c7=eta; c8=Qsoil/Qb;
//* Non-critical parameters are:                               nc2=Lt;nc3=Dt,eff;nc4=Eb;nc5=Lcrack;nc6=Deff,crack;nc7=eta;nc8=Qsoil/Qb;

     var c1=0; var c2=0;  var c3=0;  var c4=0;  var c5=0;  var c6=0;  var c7=0;  var c8=0;
     var nc1=0;var nc2=0; var nc3=0; var nc4=0; var nc5=0; var nc6=0; var nc7=0; var nc8=0;
     var note1="";var note2="";var note3="";var notec=""; var notenc="";

     if (B<0.1) {note1="Diffusion is the dominant mechanism across foundation.";
        if ((A*B/C)<0.1) {note2=" Diffusion through soil is the overall rate-limiting process for soil-gas to indoor-air pathway.";
                        c1=1;c2=1;c3=1;c4=1;nc5=1;nc6=1;nc7=1;nc8=1;}
        if ((Acap*B/C)<0.1) {note3=" Diffusion through soil is the overall rate-limiting process for groundwater to indoor-air pathway.";}
        if ((A*B/C)>(10*(1+A))) {note2=" Diffusion through foundation is the overall rate-limiting process for soil-gas to indoor-air pathway.";
                        c1=1;c5=1;c6=1;c4=1;c7=1;nc8=1;nc2=1;nc3=1;}
        if ((Acap*B/C)>(10*(1+A))) {note3=" Diffusion through foundation is the overall rate-limiting process for groundwater to indoor-air pathway.";}
//*        if (note2=="") {notec="Results vary with changes in all primary inputs."}
                 }      

     if (B>3) {note1="Advection is the dominant mechanism across foundation.";
        if ((A/C)<0.1) {note2=" Diffusion through soil is the overall rate-limiting process for soil-gas to indoor-air pathway.";
                        c1=1;c2=1;c3=1;c4=1;nc5=1;nc6=1;nc7=1;nc8=1;}
        else if ((A/C)>10) {note2=" Advection through foundation is the overall rate-limiting process for soil-gas to indoor-air pathway.";
                        c8=1;nc1=1;nc2=1;nc3=1;nc4=1;nc5=1;nc6=1;nc7=1;}
        else {c1=1;c2=1;c3=1;c4=1;c8=1;nc5=1;nc6=1;nc7=1;}
        if ((Acap/C)<0.1) {note3=" Diffusion through soil is the overall rate-limiting process for groundwater to indoor-air pathway.";}
        else if ((Acap/C)>10) {note3=" Advection through foundation is the overall rate-limiting process for groundwater to indoor-air pathway.";}
                          }

      var start = "Based on parameter analysis:  ";
      txt1=start+note1 + note2 + note3;
      return txt1;


}
                         