function userDefinedLink(e) {
	if (e == 'Contact.html' || e == '../Contact.html')
		location.href = '/Contact.html';
	else if (e == 'Contact-us.html' || e == '../Contact-us.html')
		location.href = '/Contact-us.html';
	else if (e == 'FAQ.html' || e == '../FAQ.html')
		location.href = '/FAQ.html';
}

