// JavaScript Document
function redir_url()
{
  var path = location.pathname;
  var host = location.hostname;
  var url= "http://www.bgeneral.com"+path;
	
	 if (host != "www.bgeneral.com")
	 {
       //alert (host)
       location.replace (url)  //descomentar cuando pase a producción.
	 }

}