//---------------------------------------------------------------------
// Author:		Marc van Heugten
// Date:		22-01-2004
// Description: All kinds of functions related to the basket
// Reference:	TD Webshop 300
//---------------------------------------------------------------------


//---------------------------------------------------------------------
// Author:		Marc van Heugten
// Date:		10-02-2004
// Description: Confirmation of empty the basket
// Reference:	TD Webshop 300
//---------------------------------------------------------------------
function EmptyBasket(Message) 
{
	var ReturnValue;

	ReturnValue = confirm(Message);

	if (ReturnValue == true)
	{
		return true
	}
	else
	{
		return false
	}
}

function openFreightCost(strUrl, strWindow)
{
	window.open(strUrl,'',strWindow);
}