Use the hasFocus method:
if (document.hasFocus()) {
// ...
}
If you have iframes on your page, they need to be checked separately:
function isFocused() {
return document.hasFocus() || document.getElementById('iframe').contentWindow.document.hasFocus();
}