﻿  //redirect index.html to '/'
  
    var string=window.location.href;
    
    if (string.indexOf('/1/') > 0 )
        
        {
            //window.location="http://www.constructioncommunicator.com/1/"
            document.write("<a href='/1/'>Home</a>");
        }
    else
    
        {
            //window.location="http://www.constructioncommunicator.com/"
            document.write("<a href='/'>Home</a>");         
        }
