function findTotalStorage()
{
//total lake storage - percent (up to 2 decimal places)
return '83.9';
}

function findAvgStorage()
{
//Avg lake storage - percent (up to 2 decimal places)
return '83.6';
}

function findJRFlow()
{
//James River Flow from yesterday
return '10.84';
}

function findLevelsMcDaniel()
{
//lake levels
return '-0.86';
}

function findLevelsFellows()
{
//lake levels
return '-7.26';
}

function findPumpage()
{
//total pumpage - combined
return '25.33';
}

function findRecordPumpage()
{
//record pumpage
return '59.41';
}

function findRecordPumpageDate()
{
//record pumpage
return '08/13/2007';
}

function findSources()
{
//determine the water sources for previous day
return 'Fulbright Springs, James River, McDaniel Lake';
}

function findUpdateTime()
{
//the update time from the vb pgm
return '02/09/2012 07:04 AM';
}

