// photoPopup Script
function popupPhoto(theLink) {
    var photo = window.open(theLink, 'photo', 'width=430,height=330,status,scrollbars,resizable');
    var i = window.setInterval(
        function() {
            photo.focus();
            window.clearInterval(i);
        },
    200);
    return false;
}
