Using tikz to overlay an entire slide with a semitransparent rectangle is a nice gimmick in presentations. There is only one drawback: If the theme that has a footer, the footer is not covered by the rectangle which looks kinda ulgy as you can see here:

Using a theme without a footer is obviously a workaround, but it would be even nicer if the rectangle would cover the whole slide. Any ideas how this could be done?
Here is the code:
\documentclass{beamer}
\usepackage{tikz}
\usetheme{Copenhagen}
\newcommand<>{\overlay}[1]{\uncover#2{%
\begin{tikzpicture}[remember picture,overlay]%
\draw[fill=black,opacity=0.70]
(current page.north east) rectangle (current page.south west);
\node at (current page.center) {#1};
\end{tikzpicture}}
}
\begin{document}
\section{Beamer}
\begin{frame}{Beamer}
Some text
\overlay<2>{
\huge \textcolor{white}{
\begin{minipage}{.8\linewidth}
\begin{block}{Really Important}
Some thing one should always KEEP in mind.
\end{block}
\end{minipage}
}
}
\end{frame}
\end{document}

