﻿// JavaScript Document
function checkDOM(){
var currURL = window.location.hostname;
	currURL = currURL.toString();
	qaURL = "qahsbcnet.us.hsbc";
	prodURL = "www.hsbcnet.hsbc";
	if (currURL.indexOf(qaURL) > -1 || currURL.indexOf(prodURL) > -1 ){
		window.location = "/solutions/control/html/not_found.html"
	}
}
checkDOM();