Code
<script type="text/javascript">
function checkAjaxResponce() {
if($('.myWinCont').length > 0) {
/* alert($('.myWinCont:last a').html()); */
location.href = $('.myWinCont:last a').attr('href');
}
}
setInterval ("checkAjaxResponce()", 5000 );
</script>
Ставим скрипт куда-нить в head.
5000 - таймаут проверки в мс ~ 5 секунд
Автор - mob_dp