
function hideProducts(c)
{
	for (var i=0;i<=c;i++)
	{
		hideDiv('sp_prods'+i);
		hideDiv('hide'+i);
	}
}

function showDispProduct(c)
{
	showDiv('sp_prods'+c);
	showDiv('hide'+c);
	hideDiv('show'+c);
}

function hideDispProduct(c)
{
	hideDiv('sp_prods'+c);
	hideDiv('hide'+c);
	showDiv('show'+c);
}

function seeOther(val)
{
	if (val == -1)
		showDiv('sp_otherCountry')		
	else
		hideDiv('sp_otherCountry')
}


function hideDiv(divid)
{
	if (document.getElementById(divid))
	{
		document.getElementById(divid).style.display = 'none';
	}
}

function showDiv(divid) 
{
	if (document.getElementById(divid))
		document.getElementById(divid).style.display = 'block';
}

