   window.onload = function (){
                    var ua = navigator.userAgent.toLowerCase();
                    var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
                    var isIphone = ua.indexOf("iphone") > -1; //&& ua.indexOf("mobile");
                    var txt;
                    var isInstalled = window.localStorage.getItem('app');
                    
    
                    if(isAndroid) {
  							txt = 'Google Play';
  							$('#platfrom').text(txt);							
                            //window.location.href = 'https://play.google.com/store/apps/details?id=com.actionprompt.fmo';
                    }
                    
                    if(isIphone){
                    	    txt = 'the App Store';
                    	    $('#platfrom').text(txt);
                            //window.location.href = 'https://appsto.re/gb/5urA6.i';
                   }
	             	
	             	
	             	if(!isInstalled){
                  		$('.speech').show('slow');
                    }
    }	
    
    
    $('#appDownload').click(function(){
    	 			var ua = navigator.userAgent.toLowerCase();
                    var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
                    var isIphone = ua.indexOf("iphone") > -1; //&& ua.indexOf("mobile");
  
                    if(isAndroid) {
                          window.location.href = 'https://play.google.com/store/apps/details?id=com.actionprompt.fmo';
                    }
                    
                    if(isIphone){
                          window.location.href = 'https://appsto.re/gb/5urA6.i';
                   }
                   window.localStorage.setItem('app', '1');
    });

	  
                   
                    //window.location.href = 'com.actionprompt.fmo';
                
                    /*

                   */

