function ShowHide(pID)
{
	var bShow = (document.getElementById(pID).style.display == '');

	if(bShow)
	{
		document.getElementById(pID).style.display = 'none';
	}
	else
	{
		document.getElementById(pID).style.display = '';
	}
}

function Add(pSizeID,pQuantity,pPageConvert)
{
	if(confirm('Your selection will be added to the Shopping Basket'))
	{
		document.location = 'basket_process.aspx?id=' + pSizeID + '&q=' + pQuantity + '&m=Inc&p=' + pPageConvert;
	}
}


