function SetAllData ()
{
//***********************************************************************
//*
//* Function SetAllData loads zeros and blanks into all OnSite cookies
//*
//* Language:  JavaScript1.1
//*
//* Inputs: none
//*
//* Returns: none
//*
//* Limitations:
//*
//* Author:
//*  Dr. Jim Weaver
//*  Hydrologist
//*  Regulatory Support Branch
//*  Ecosystems Research Division
//*  National Exposure Research Laboratory
//*  United States Environmental Protection Agency
//*  960 College Station Road
//*  Athens, Georgia 30605
//*  weaver.jim@epa.gov
//* 
//*
//* Reference:
//*  Flanagan, D., 1997, JavaScript: The Definitive Guide, 2ed, O'Reilly and Associates
//*
//* Created:  11/08/99
//*
//* Required functions: save
//*
//* Required scripts: cookie.js
//*
//***********************************************************************
var Ent = new Array("");
var date = new Date();

var i = 0;

//display the cookie message
window.open('../../home/storage.html','storage','width=620,height=400,resizable');
return;




/*
for (i=0 ; i<=15 ; i++)
{
  Ent[i] = "0";
}

//Cookie OSid

//the id (identification) virtual cookie
save('id',Ent);

//Cookie OS2

//the mc (moisture content) virtul cookie
save('mc',Ent);

//the ch (chemical) virtual cookie
save('ch',Ent);

//the fu (fuel) virtual cookie
save('fu',Ent);

//the es (effective solubility) virtual cookie
save('es',Ent);

//the rd (retardation) virtual cookie
save('rd',Ent);

//the h1 (first half life) virtual cookie
save('h1',Ent);

//the h2 (second half life) virtual cookie
save('h2',Ent);

//the source input virtual cookie
save('sc',Ent);

//the mass input virtual cookie
save('ms',Ent);

//the temperature virtual cookie
save('te',Ent);


//Cookie OS1

//the ng (new Gradient) virutal cookie
save('ng',Ent);

//the gradient3 virtual cookie
save('g3',Ent);

//the gr (gradient output ) virtual cookie
save('gr',Ent);

//the dc (darcy's law) virtual cookie
save('dc',Ent);

//the po (porosity output) virtual cookie
save('po',Ent);

//the ds (dispersivity) virtual cookie
save('ds',Ent);

//the travel time virtual cookie
save('tt',Ent);

//the time virtual cookie
save('tm',Ent);

//the soil type virtual cookie
save('st',Ent);

//the recharge virtual cookie
save('rc',Ent);
*/
}
