BCModules.acrobat = {
	Index : Number,
	IsInstalled : Boolean,
	IsRequired : Boolean,
	Init : function(index, isRequired) {
		this.IsInstalled = false;		

		this.Index = index;
		this.IsRequired = isRequired;
		
		BCModules.RegisterModule(this);
	},
	Check : function() {
		var v = PluginDetect.isMinVersion('Acrobat', '1,0,0,0');
		this.IsInstalled = (v == 1);
	}
}
