function isLiveStickerInstalled() {
	    if((navigator.userAgent.indexOf('Safari')!=-1) || (navigator.userAgent.indexOf('Opera')!=-1)) return false;	   
	    if( !((navigator.userAgent.indexOf('Win')!= -1) && (navigator.userAgent.indexOf('MSIE')!=-1) && (parseInt(navigator.appVersion,10) >= 4)) ) {
	    		if  ( typeof(navigator.mimeTypes["application/x-livesticker"]) == "object")  {
	    			return true;
	    		} else {
	    			return false;
	    	  }	        
	    } else {
	    	  try{
					var axo = new ActiveXObject("Livesticker.Infos");
					axo.productName = "LiveSticker";
					var sLivestickerVersion = axo.version; 
					axo.productName = "LiveSticker3Demo";	
					var sLivesticker3DemoVersion = axo.version; 
			    return (sLivestickerVersion != "") || (sLivesticker3DemoVersion != "");
  				}catch (e){
   						return false;
   				}
	    }
    return false;
}