﻿  //Set the title tag for each page.
  //first, parse 15:
    var string=window.location.href;
    var getit = new Array();    
    var theTitle = "";
    
    if ( string.indexOf('2') == -1  )
    
    {
        var getit = string.split("communicationsplus.net/"); //change to communicationsplus.net 
        
    }

    else
    
    {   
        var getit=string.split("2/");        
    }
    
    if ( getit[1]=="CaseStudyMemjet.html" ) 
    {
        theTitle =  "<style type='text/css'>.floatright{float: right;width: 100px;margin: 0 0 0 14px;}</style>";
    }
    
document.write(theTitle);  
    
    
    
