function openWhereToBuy(nCountryCode, nCompanyCode)
{
	//whereToBuy.aspx?countryCode=1&companyCode=1 (FR) (SW)
	//alert("http://www.matki.co.uk/whereToBuy.aspx?countryCode=" + nCountryCode + "&companyCode=" + nCompanyCode);
	var wWhere = window.open("http://www.matki.co.uk/whereToBuy.aspx?countryCode=" + nCountryCode + "&companyCode=" + nCompanyCode, "popup", "width=800, height=620, resizable=yes, scrollbars=yes, toolbar=no, location=no, menubar=no, status=yes");
	wWhere.focus();
}