function ChangeImage(action, co)
{
	if (action == "on")
	{
		podmiana = co.src.substring(0,co.src.length - 4)+"-over.jpg"
		co.src=podmiana;
	}
	else
	{
		podmiana = co.src.substring(0,co.src.length - 9)+".jpg"
		co.src=podmiana;
	}
}

function ClearBasket()
{
	{
		if (confirm("Czy napewno chcesz usunąć całą zawartość koszyka?"))
      	document.location="strefa_kontrahenta,koszyk,wyczysc,pl.htm";
	}
	document.writeln(Info());
}

function GoToLink(link)
{
	document.location=link;
}

function ScrollMenu(id)
{
	var styl;
	
	for (a = 1; a <= 3; a++)
	{
		if (a == id)
		{
			styl = "block";
		}
		else
		{
			styl = "none";
		}
		document.getElementById('ScrollMenu'+a).style.display = styl;
	}
}

