function open_window ( url, width, height ) 
{
  var twidth = width;
  var theight = height;
  var scrollbars = 0;

  if(twidth > screen.width - 80)
  {
    twidth = screen.width - 80;
    scrollbars = 1;
  }
  if(theight > screen.height - 80)
  {
    theight = screen.height - 80;
    scrollbars = 1;
  }

  var pos_x = (screen.width - twidth - 10)/2;
  var pos_y = (screen.height - theight - 29)/2;
   
  if(typeof(source_window) == "undefined" || source_window.closed)  
    source_window = window.open( url,'source_window','menubar=0,toolbar=0,location=0,scrollbars=' + scrollbars + ',screenX='+pos_x+',screenY='+pos_y+',left='+pos_x+',top='+pos_y+',width='+twidth+',height='+theight+',resizable=0');  
  else source_window.location.href = url;
  
	source_window.focus();
}

function op ( url, height )
{
  open_window ( url, 300, height );
}

var s_opened = '';
var b_flash = false;
var t = null;

function Ukaz ( s )
{
//	return;

	b_flash = true;

	clearTimeout ( t );

	if ( s_opened == s ) return;
	else if ( s_opened != '' ) _NaozajSkry ( s_opened );

	var o_obj = document.getElementById ( s );

	if ( o_obj == null ) return;

        var o_hra = document.getElementById ( 'flash_hra' );

        if ( o_hra != null ) o_hra.style.visibility = 'hidden';

	o_obj.style.zIndex = 1000;
	o_obj.style.display = 'block';

	s_opened = s;
}

function Skry ( s )
{
//	return;

	if ( !b_flash ) return;

	t = setTimeout ( "_NaozajSkry('" + s + "')", 500 );
}

function Ukaz2 ( s )
{
//	return;

	b_flash = false;

	clearTimeout ( t );

	if ( s_opened == s ) return;
	else if ( s_opened != '' ) _NaozajSkry ( s_opened );

	var o_obj = document.getElementById ( s );

	if ( o_obj == null ) return;

        var o_hra = document.getElementById ( 'flash_hra' );

        if ( o_hra != null ) o_hra.style.visibility = 'hidden';

	o_obj.style.zIndex = 1000;
	o_obj.style.display = 'block';

	s_opened = s;
}

function Skry2 ( s )
{
//	return;

	b_flash = false;

	t = setTimeout ( "_NaozajSkry('" + s + "')", 500 );
}

function _NaozajSkry ( s )
{
	var o_obj = document.getElementById ( s );

	if ( o_obj == null ) return;

	o_obj.style.display = 'none';

        var o_hra = document.getElementById ( 'flash_hra' );

        if ( o_hra != null ) o_hra.style.visibility = 'visible';

	s_opened = '';
}

function UkazObrazok ( s_src, e )
{
	if ( document.all )
	{
		tempX = event.clientX + document.documentElement.scrollLeft;
		tempY = event.clientY + document.documentElement.scrollTop;
	}else
	{
		tempX = e.pageX;
		tempY = e.pageY;
	}  

	if ( tempX < 0 ) tempX = 0;
	if ( tempY < 0 ) tempY = 0;

	var obj = document.getElementById ( 'dynamicky_obrazok' );

	obj.childNodes[0].src = '/swift_data/source/abc_domaceho_barmana/' + s_src;

	obj.style.left = ( tempX + 15) + 'px';
	obj.style.top = ( tempY + 15) + 'px';

	obj.style.display = 'block';
}

function SkryObrazok ()
{
	var obj = document.getElementById ( 'dynamicky_obrazok' );

	obj.style.display = 'none';

	obj.childNodes[0].src = '/swift_data/source/images/blank.gif';
}

