// JavaScript Document

function otworz(adres) {
noweOkno = window.open(adres, 'okienko', 'width=400,height=350', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no')
}

function otworz_produkt(id) {
noweOkno = window.open('/pokaz_produkt.php?id=' + id, 'okienko', 'width=650,height=400', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no')
}



function goToStartWeb(timer)
{
	timer--;
	if(timer == -1)
	{
		document.location = "index.php";
	}
	else
	{
		//alert(document.getElementById('timer'));
		document.getElementById('timer').innerHTML = timer;
		setTimeout("goToStartWeb(" + timer + ")", 1000);
	}		
}

function showMenu(id)
{
	var div = document.getElementById(id);
	
	if(div.style.display == 'none')
	{
		div.style.display = 'block';
	}
	else
	{
		div.style.display = 'none';
	}
}

function showOffer(id)
{
	var div = document.getElementById(id);
	
	if(div.style.display == 'none')
	{
		div.style.display = 'block';
	}
	else
	{
		div.style.display = 'none';
	}
}


function showMap(id)
{
	var div = document.getElementById(id);
	var mapa1 = document.getElementById('mapa1');
	var mapa2 = document.getElementById('mapa2');
	var mapa3 = document.getElementById('mapa3');
	
	if(div.style.display == 'none')
	{
		div.style.display = 'block';
	}
	else
	{
		div.style.display = 'none';
	}
	
	if(id == 'mapa1')
	{
		mapa2.style.display = 'none';
		mapa3.style.display = 'none';
	}
	if(id == 'mapa2')
	{
		mapa1.style.display = 'none';
		mapa3.style.display = 'none';
	}
	if(id == 'mapa3')
	{
		mapa2.style.display = 'none';
		mapa1.style.display = 'none';
	}
	

}




