﻿// JScript File

function OnLoad()
{
    var agt = navigator.userAgent.toLowerCase();    
    var is_iphone = (agt.indexOf('iphone') != -1);
    var is_android = (agt.indexOf('android') != -1);
    // look for 'mobile safari' AND 'blackberry' 
    var is_blackberry = ((agt.indexOf('mobile safari') != -1) && (agt.indexOf('blackberry') != -1));
    // look for windows phone os
    var is_winphone = (agt.indexOf('windows phone') != -1);        
    // look for windows phone os 7
    var is_winphone7 = (agt.indexOf('windows phone os 7') != -1);

    if (is_iphone)
    {    
        if (document.referrer.indexOf('captionedtext') == -1)            
        {
            // PROD
            window.location.href = "http://www.captionedtext.com/client/mobileProfile.aspx";            
        }
    }
    
    if (is_android)
    {
	// PROD
	window.location.href = "http://www.captionedtext.com/client/androidProfile.aspx";
    }

    if (is_blackberry)
    {
        if (document.referrer.indexOf('captionedtext') == -1)
	{
	    // PROD	        
            window.location.href = "http://www.captionedtext.com/client/blackberryProfile.aspx";
	}
    }

    if (is_winphone)
    {
        if (is_winphone7)
        {
            // PROD
            window.location.href = "http://captionedtext.com/client/winphone7Profile.aspx";
        }
        else
        {
            // PROD
            window.location.href = "http://captionedtext.com/client/winmobileProfile.aspx";
        }            
    }
}
