Last Updated - 05.08.2022

Trademarks

FinMetGold and other Company graphics, logos, designs, page headers, button icons, scripts and service names are registered trademarks, trademarks or trade dress of the Company in the U.S. and/or other countries. The Company’s trademarks and trade dress may not be used, including as part of trademarks and/or as part of domain names, in connection with any product or service in any manner that is likely to cause confusion and may not be copied, imitated, or used, in whole or in part, without the prior written permission of the Company.

Copyright Complaints

If you believe that any material on the Site infringes upon any copyright which you own or control, you may send a written notification of such infringement to our Designated Agent as set forth below:

E-Mail Address: finmet@gmail.com

Submissions

You acknowledge and agree that any questions, comments, suggestions, ideas, feedback or other information about the Site or the Service (“Submissions”), provided by you to the Company are non-confidential and shall become the sole property of the Company. The Company shall own exclusive rights, including all intellectual property rights, and shall be entitled to the unrestricted use and dissemination of these Submissions for any purpose, commercial or otherwise, without acknowledgment or compensation to you.
FinMet journey started with a single belief to connect people, places and possibilities by doing things others said could not be done.

© FinMetGold 2024. All Rights Reserved.

document.addEventListener('DOMContentLoaded', function() { var loanAmountInput = document.getElementById('loan-amount'); if (loanAmountInput) { loanAmountInput.addEventListener('input', function() { var value = this.value.replace(/,/g, ''); // Remove existing commas if (!isNaN(value) && value.length > 0) { var formattedValue = Number(value).toLocaleString('en'); this.value = formattedValue; } }); loanAmountInput.addEventListener('blur', function() { var value = this.value.replace(/,/g, ''); // Remove existing commas on blur if (!isNaN(value) && value.length > 0) { this.value = Number(value).toLocaleString('en'); } }); } });