function MortgageCalculator(SalePrice,CultureCode){
  var Height = 600;
  var Width = 550;
  var Top = (screen.height / 2) - (Height / 2);
  var Left = (screen.width / 2) - (Width / 2);
  var params = 'resizable=no,scrollbars=yes,height=' + Height + ',width=' + Width + ',top=' + Top + ',left=' + Left;
  if (isNaN(SalePrice)){SalePrice=""}
  var wn = window.open('http://www.mls.ca/Calculators/' + CultureCode + '/calculator.aspx?Price=' + SalePrice, '', params);
  wn.focus();
}
