It all depends on how your data was entered in the spreadsheet. If the data was entered in a mm/dd/yyyy format (e.g., 06/16/2011); you can easily find the difference in dates by subtracting the cells (e.g., =b1-a1). There are several date formats, so the easiest way to see if your date is really a number is by right clicking the cell containg the date and click Format Cell, Number tab and click General. If the date changes to a weird number (e.g., 06/16/2011 changes to 40710) then you can easily calculate the days.
If for example your data is set up like this: Col A has month, Col B has day, col C has year; use the DATEVALUE function like this: =DATEVALUE(CONCATENATE(A20,"/",B20,"/",C20)). Unless the cell has already been formatted for a Number format - Date, it will probably give you a result like 40710 if the value was for 06/16/2011.
Once the data is in a numeric format, you can simply subtract the two fields to get the time in days.