I used Excel2Latex to pump out some tables from my excel file. All works fine but heres the output picture:

I want the table to be streched accross the entire page. Is this possible and if so how do I do it. Here is the code I am using:
\documentclass{article} \usepackage{bigstrut} \begin{document} % Table generated by Excel2LaTeX from sheet 'Sheet1' \begin{table}[htbp] \centering \caption{Table shows the commulative oxygen levels at 2 minute time intervals. The displacement is measured in \textbf{cm}} \begin{tabular}{|r|r|r|r|r|r|r|r|r|r|} \cline{2-10} \multicolumn{1}{r|}{} & \multicolumn{9}{c|}{\textbf{Time of reading (in min)}} \\ \cline{2-10} \multicolumn{1}{r|}{} & \multicolumn{1}{r}{\textbf{0}} & \multicolumn{1}{r}{\textbf{2}} & \multicolumn{1}{r}{\textbf{4}} & \multicolumn{1}{r}{\textbf{6}} & \multicolumn{1}{r}{\textbf{8}} & \multicolumn{1}{r}{\textbf{10}} & \multicolumn{1}{r}{\textbf{12}} & \multicolumn{1}{r}{\textbf{14}} & \textbf{16} \bigstrut\\ \hline \hline \textbf{Treatment 1} & 0 & 0 & 0.5 & 0.7 & 0.9 & 0.9 & 1 & 1.2 & 1.8 \bigstrut\\ \hline \textbf{Treatment 2} & 0 & 0 & 0 & 0.1 & 0.1 & 0.1 & 0.1 & 0.2 & 0.5 \bigstrut\\ \hline \textbf{Treatment 3} & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \bigstrut\\ \hline \end{tabular}% \label{tab:addlabel}% \end{table}% \end{document} 

