<!--
function CheckBasketOverWrite(strMsg, strURL)
{
	var balert
	var strGotoURL = footer_addRandom( strURL );
	balert = false;
	if ( js_strLanguage == "cn" ) {
		if ( strMsg == "您確定要儲存您現在的「心水產品清單」嗎 ? ")
			balert = true;
			strMsg = "您確定要清除您現在的「心水產品清單」嗎 ? ";
	}
	else {
		if ( strMsg == "Are you sure you want to save over your current Favourites List?")
			balert = true;
			strMsg = "Are you sure you want to remove your current Favourites List?";
	}
	if (balert)	{
		if (window.confirm(strMsg))
		{
			if ( strGotoURL != "" )
			location.href = strGotoURL;
		}
	} else {
		if ( strGotoURL != "" )
			location.href = strGotoURL;
	}
	//return false;
}
//-->

