﻿function showmorecountries(string)
	{

		var item = string;

		var showlist = document.getElementById('show_more_countries');
		var showlisttext = document.getElementById('show_more_countries-option');
		var hidelisttext = document.getElementById('hide_more_countries-option');

		if (item == 1)
			{
				showlist.style.display = "block";
				hidelisttext.style.display = "block";
				showlisttext.style.display = "none";
			} else {
				showlist.style.display = "none";
				showlisttext.style.display = "block";
				hidelisttext.style.display = "none";
			}				

	}
	
function showmorecountriesHoriz(string)
	{

		var item = string;

		var showlist = document.getElementById('show_more_countries_horiz');
		var showlisttext = document.getElementById('show_more_countries-option');
		var hidelisttext = document.getElementById('hide_more_countries-option');

		if (item == 1)
			{
				showlist.style.display = "block";
				hidelisttext.style.display = "block";
				showlisttext.style.display = "none";
			} else {
				showlist.style.display = "none";
				showlisttext.style.display = "block";
				hidelisttext.style.display = "none";
			}				

	}
	
function showBasketContents(string)
	{

		var item = string;

		var showcontents = document.getElementById('showBasketContents');
		var showcontentstext = document.getElementById('show_basket_contents-option');
		var hidecontentstext = document.getElementById('hide_basket_contents-option');

		if (item == 1)
			{
				showcontents.style.display = "block";
				hidecontentstext.style.display = "block";
				showcontentstext.style.display = "none";
			} else {
				showcontents.style.display = "none";
				showcontentstext.style.display = "block";
				hidecontentstext.style.display = "none";
			}				

	}
