// Common Domain Names js include.

function giveEmptyBasketWarning() {
// Gives a warning that the basket is going to be emptied 
// because it contains domain names.
// You cannot mix and match domain names with products.
	var bRet;
	var sMsg;
	
	bRet = false;
	sMsg = "You cannot add products to your basket if it contains a Domain Name. If you continue all Domain Names will be removed from the basket.  Click OK to proceed or Cancel to amend."
	bRet = confirm(sMsg);

	return bRet;
}

function giveEmptyBasketWarning2() {
// Gives a warning that the basket is going to be emptied 
// because it contains products and a domain name is being
// added.
// You cannot mix and match domain names with products.
	var bRet;
	var sMsg;
	
	bRet = false;
	sMsg = "You cannot add a Domain Name to your basket if it contains other items. If you continue all of the other items will be removed from the basket.  Click OK to proceed or Cancel to amend."
	bRet = confirm(sMsg);

	return bRet;
}
