﻿  //redirect index.html to ''
  
    var string=window.location.href;
    
    if (string.indexOf('index.html') > 0  )
    
    {
        if (string.indexOf('communicationsplus.net') > 0 )
        
        {
            window.location="http://www.communicationsplus.net/5/"
            
        }
        
        else if (string.indexOf('productionrobotics.com') > 0 )
        
        {
                        
            window.location="http://www.productionrobotics.com"
            
        }
    }
