function show_promo(e, v, id1, id2)
{
	if (v.title)
	{
		var div = document.createElement("div");
		div.className = "promo_pic_max";
		div.innerHTML = '<img src="/gfx/promo/' + id1 + '_' + id2 + '.jpg" />';
		v.title = "";
		v.move = function(e)
		{
			e = e || event;
				
			if (document.documentElement.scrollTop)
				scrollTop = document.documentElement.scrollTop; 
			else 
				scrollTop = document.body.scrollTop; 
				
			div.style.left = e.clientX - 225 + "px";
			div.style.top = e.clientY - 350 + (scrollTop) + "px";
			}
		v.move(e);
		document.body.appendChild(div);
		v.onmousemove = function(e)
		{
			v.move(e)
		}
		v.onmouseout = function(e)
		{
		  v.title = id1 + '_' + id2;
		  document.body.removeChild(div);
		}
	}
}

function ShowHide(id)
{
	obj = document.getElementById(id);
	
	if (obj.style.display == 'none')
		obj.style.display = 'block';
	else
		obj.style.display = 'none';
}

function check_adult(check)
{
	var intro = null;
	intro = '<a href="?enter" style="position:absolute; margin-left:237px; margin-top:498px; width:150px; height:40px; z-index:1;"></a><a href="http://www.pajacyk.pl" style="position:absolute; margin-left:405px; margin-top:498px; width:150px; height:40px; z-index:1;"></a><div><div style="background-image:url(\'gfx/intro1.jpg\'); width:626px; margin-left:72px; height:122px;"></div><div style="background-image:url(\'gfx/intro2.jpg\'); width:626px; margin-left:72px; height:122px;"></div><div style="background-image:url(\'gfx/intro3.jpg\'); width:626px; margin-left:72px; height:122px;"></div><div style="background-image:url(\'gfx/intro4.jpg\'); width:626px; margin-left:72px; height:122px;"></div><div style="background-image:url(\'gfx/intro5.jpg\'); width:626px; margin-left:72px; height:122px;"></div></div>';
	if (check != 1)
	{
		document.body.style.cssText = "background-color:#ffd6d1; background-image:none;";
		document.getElementById('layout').innerHTML = intro;
	}
}
