var div_letak3 = document.getElementById('letak3');
var image3 = new Array;


// NACTENI LETAKU
function readImage3()
{
	image3['close'] = new Image();
	image3['close'].src = '../images/close.gif';

	image3['leaflet'] = new Image();
	image3['leaflet'].src = '../images/'+leaflet_img3;
}


// SAMOTNY LETAK A TLACITKO CLOSE
function visibleLeaflet3()
{
	readImage3();

	// letak
	leaflet3 = document.createElement('letak3');
	leaflet3.style.width  = leaflet_width3;
	//leaflet.style.height = leaflet_height3;
	leaflet3.style.height = leaflet_height3 + 80;

	// tlacitko
	new_button3 = document.createElement('img');
	new_button3.setAttribute('src', image3['close'].src);
	new_button3.setAttribute('alt', 'Zavøít?');
	new_button3.setAttribute('title', 'Zavøít?');
	new_button3.setAttribute('width', 21);
	new_button3.setAttribute('height', 21);

	if (is_ie) new_button3.onclick = hiddenLeaflet3;
	else new_button3.setAttribute('onclick', 'hiddenLeaflet3()');

	new_button3.style.position   = 'absolute';
	new_button3.style.marginLeft = (leaflet_width3 - 21) + 'px';

	// obrazek
	new_img3 = document.createElement('img');
	new_img3.setAttribute('src', image3['leaflet'].src);
	new_img3.setAttribute('alt', leaflet_alt3);
	new_img3.setAttribute('title', leaflet_alt3);
	new_img3.setAttribute('width', leaflet_width3);
	new_img3.setAttribute('height', leaflet_height3);

	// zviditelneni letaku
	div_letak3.style.display = 'block';
	div_letak3.style.left    = Math.round((screen.width - leaflet_width3) / 2) + 'px';
	div_letak3.appendChild(new_button3);
	div_letak3.appendChild(new_img3);
}


// ZAVRENI LETAKU
function hiddenLeaflet3()
{
	div_letak3.style.display = 'none';
}

if (viewLeaflet3) visibleLeaflet3()

