//
// If the MonitorActive is set to true then Sightmax will track visitors
// to the SIMS website.  If it is set to false, then it will not track them.
//
var MonitorActive = true;
//
//
if (MonitorActive)
{
        document.write( '<scr'+'ipt type="text/javascript" src="' );
        var port = '8080';
        if( document.location.toString().indexOf( 'https://' ) != -1 )
        {
            document.write( 'https://' );
            port = '443';
        } else {
            document.write( 'http://' );
        }
        var post = '/SightMaxAgentInterface/Monitor.smjs?accountID=1&siteID=2&queueID=3';
        document.write( 'chat.simsware.com:'+port+post+'"><\/scr'+'ipt>' );
}

