// JavaScript Document
   function popup(szer, wysok, adres){
    var _popwidth = szer;
    var _popheight = wysok;
    _xpos = (screen.width - _popwidth) / 2;
    _ypos = (screen.height - _popheight) / 2;
    var _parametry = "width=" + _popwidth + ",height=" + _popheight + ", menubar=no, left=" + _xpos  + ",top=" + _ypos + ", resizable=no, scrollbars=yes";
    _popup = window.open(adres,"popup",_parametry);
    _popup.focus();
   }

	if(top.frames.length > 0)
	top.location.href=self.location.href;

var doBlink = function(obj,start,finish) { jQuery(obj).fadeOut(300).fadeIn(300); if(start!=finish) { start=start+1; doBlink(obj,start,finish); } } 
$(document).ready(function(){
  doBlink("#topWw4",1,4);
});