<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Avaricesoft's Weblog</title>
	<atom:link href="http://avaricesoft.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://avaricesoft.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 27 Oct 2009 18:18:12 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='avaricesoft.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/590e657e1126dcc46432ea1bc300876c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Avaricesoft's Weblog</title>
		<link>http://avaricesoft.wordpress.com</link>
	</image>
			<item>
		<title>How to call Server Side function from Client Side Code using PageMethods in ASP.NET AJAX</title>
		<link>http://avaricesoft.wordpress.com/2009/10/27/how-to-call-server-side-function-from-client-side-code-using-pagemethods-in-asp-net-ajax/</link>
		<comments>http://avaricesoft.wordpress.com/2009/10/27/how-to-call-server-side-function-from-client-side-code-using-pagemethods-in-asp-net-ajax/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 18:17:22 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[C#.net]]></category>
		<category><![CDATA[call server side function]]></category>
		<category><![CDATA[server side]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[side]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[call server side function from client script]]></category>
		<category><![CDATA[page method]]></category>
		<category><![CDATA[client side]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[WEBMETHOD]]></category>
		<category><![CDATA[what is webmethod]]></category>
		<category><![CDATA[what is page method]]></category>
		<category><![CDATA[How to call Server Side function from Client Side Code using PageMethods in ASP.NET AJAX]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=101</guid>
		<description><![CDATA[You cannot call server-side code ‘directly’ from client-side code. That is because by design, the server side code executes at server side and client side code at the client. However there are some workarounds. To call serverside code from javascript, you will need to use AJAX, and the easiest way out, is to use the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=101&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div><span style="font-family:Verdana;font-size:x-small;">You cannot call server-side code ‘directly’ from client-side code. That is because by design, the server side code executes at server side and client side code at the client. However there are some workarounds. To call serverside code from javascript, you will need to use AJAX, and the easiest way out, is to use the ASP.NET AJAX Extensions. </span></div>
<div><span style="font-family:Verdana;font-size:x-small;">One option while using Microsoft ASP.NET AJAX is to call ASP.NET <a id="KonaLink6" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">Web services</span></a> (.asmx files) from the browser by using client script. The script can call a webservice containing server-based methods (Web methods) and invoke these methods without a postback and without refreshing the whole page. However this approach could be overkill sometimes, to perform the simplest of tasks. Moreover the logic needs to be kept in a separate .asmx file. We need something that is more ‘integrated’ with our solution.</span></div>
<div><span style="font-family:Verdana;font-size:x-small;">The option we are going to use in this article involves PageMethods. A PageMethod is basically a public static method that is exposed in the code-behind of an aspx page and is callable from the client script. PageMethods are annotated with the [WebMethod] attribute. The page methods are rendered as inline JavaScript. </span></div>
<div><span style="font-family:Verdana;font-size:x-small;">Let us explore PageMethods with an example. The example we will be discussing here may not be the best example to explain PageMethods, but it will give you an idea of how to call server side code from client side. In this example, we will be connecting to the Customers table in the Northwind database. We will have some textboxes which will accept the CustomerID and in turn return the Contact Name of that Customer. The method returning ContactName will be called whenever the textbox loses focus. We will be using the onblur event where a <a id="KonaLink8" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">javascript code</span></a> will take in the value(CustomerID) from the textbox. This javascript function will then call a PageMethod (server side code) which returns the ContactName without any page refresh.</span></div>
<div><span style="font-family:Verdana;font-size:x-small;">I assume that you have downloaded and installed ASP.NET AJAX extensions for ASP.NET 2.0. If not, I would advise you to download the extensions from </span><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&amp;displaylang=en"><span style="font-family:Verdana;font-size:x-small;">here</span></a><span style="font-family:Verdana;font-size:x-small;"> and install it before moving ahead. At any point of time, if you find a difficulty in understanding the code, download the sample project attached with this article at the end.</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 1:</strong> Create an ASP.NET AJAX enabled website. Go to File &gt; New &gt; Website &gt; ASP.NET AJAX-Enabled <a id="KonaLink9" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">Web Site</span></a>. Give the solution a name and location and click Ok.</span></span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 2:</strong> Drag and drop 2 labels and 4 textbox controls. We will be accepting the CustomerID from the user in the 2 <a id="KonaLink7" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">textboxes</span></a> and displaying the ‘ContactName’ in the other two textboxes. The textboxes that will display ‘ContactName’ has some properties set that will make it appear as a label without a border. Just set the BorderStyle=None, BorderColor=Transparent and ReadOnly=True. The markup will look similar to the following:</span></span></div>
<div><span style="font-size:x-small;">&lt;form id=”form1″ runat=”server”&gt; </span></div>
<div><span style="font-size:x-small;"> &lt;asp:ScriptManager ID=”ScriptManager1″ runat=”server”/&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;div&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;asp:Label ID=”lblCustId1″ runat=”server” Text=”Customer ID 1″&gt;&lt;/asp:Label&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;asp:TextBox ID=”txtId1″ runat=”server”&gt;&lt;/asp:TextBox&gt;&lt;br /&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;asp:TextBox ID=”txtContact1″ runat=”server” BorderColor=”Transparent” BorderStyle=”None”</span></div>
<div><span style="font-size:x-small;"> ReadOnly=”True”&gt;&lt;/asp:TextBox&gt;&lt;br /&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;br /&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;asp:Label ID=”lblCustId2″ runat=”server” Text=”Customer ID 2″&gt;&lt;/asp:Label&gt;</span></div>
<div><span style="font-size:x-small;"> &amp;nbsp;</span></div>
<div><span style="font-size:x-small;"> &lt;asp:TextBox ID=”txtId2″ runat=”server”&gt;&lt;/asp:TextBox&gt;&lt;br /&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;asp:TextBox ID=”txtContact2″ runat=”server” BorderColor=”Transparent” BorderStyle=”None”</span></div>
<div><span style="font-size:x-small;"> ReadOnly=”True”&gt;&lt;/asp:TextBox&gt;&amp;nbsp;&lt;br /&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;/div&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;/form&gt;</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;">Before moving ahead, we will store our connection string information in the Web.config. Add the following tag below your </span>&lt;/configSections&gt;<span style="font-family:Verdana;"> tag. Remember we have created an ‘ASP.NET AJAX enabled website’. The tag </span>&lt;/configSections&gt;<span style="font-family:Verdana;"> along with some other tags automatically get added to the web.config.</span></span></div>
<div><span style="font-size:x-small;">&lt;connectionStrings&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;removename=“all“/&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;addname=“NorthwindConnectionString“connectionString=“<a id="KonaLink11" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">Data Source</span></a>=(local); Initial Catalog=Northwind; Integrated Security = SSPI;“/&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;/connectionStrings&gt;</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 3:</strong> Currently we will add a method, ‘GetContactName()’ which will accept a CustomerID and return the Contact Name information from the Northwind database, Customer table. We will then transform this method as a PageMethod. </span></span></div>
<div><span style="font-family:Verdana;font-size:x-small;">C#</span></div>
<div><span style="font-size:x-small;">public static string GetContactName(string custid)</span></div>
<div><span style="font-size:x-small;"> {</span></div>
<div><span style="font-size:x-small;"> if (custid == null || custid.Length == 0)</span></div>
<div><span style="font-size:x-small;"> return String.Empty;</span></div>
<div><span style="font-size:x-small;"> SqlConnection conn = null;</span></div>
<div><span style="font-size:x-small;"> try</span></div>
<div><span style="font-size:x-small;"> {</span></div>
<div><span style="font-size:x-small;"> string connection = ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;</span></div>
<div><span style="font-size:x-small;"> conn = new SqlConnection(connection);</span></div>
<div><span style="font-size:x-small;"> string <a id="KonaLink12" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">sql</span></a> = “Select ContactName from Customers where CustomerId = @CustID”;</span></div>
<div><span style="font-size:x-small;"> SqlCommand cmd = new SqlCommand(sql, conn);</span></div>
<div><span style="font-size:x-small;"> cmd.Parameters.AddWithValue(“CustID”, custid);</span></div>
<div><span style="font-size:x-small;"> conn.Open();</span></div>
<div><span style="font-size:x-small;"> string contNm = Convert.ToString(cmd.ExecuteScalar());</span></div>
<div><span style="font-size:x-small;"> return contNm;</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-size:x-small;"> catch (SqlException ex)</span></div>
<div><span style="font-size:x-small;"> {</span></div>
<div><span style="font-size:x-small;"> return “error”;</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-size:x-small;"> finally</span></div>
<div><span style="font-size:x-small;"> {</span></div>
<div><span style="font-size:x-small;"> conn.Close();</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-family:Verdana;font-size:x-small;">VB.NET</span></div>
<div><span style="font-size:x-small;"> Public Shared Function GetContactName(ByVal custid As String) As String</span></div>
<div><span style="font-size:x-small;"> If custid Is Nothing OrElse custid.Length = 0 Then</span></div>
<div><span style="font-size:x-small;"> Return String.Empty</span></div>
<div><span style="font-size:x-small;"> End If</span></div>
<div><span style="font-size:x-small;"> Dim conn As SqlConnection = Nothing</span></div>
<div><span style="font-size:x-small;"> Try</span></div>
<div><span style="font-size:x-small;"> Dim connection As String = ConfigurationManager.ConnectionStrings(“NorthwindConnectionString”).ConnectionString</span></div>
<div><span style="font-size:x-small;"> conn = New SqlConnection(connection)</span></div>
<div><span style="font-size:x-small;"> Dim sql As String = “Select ContactName from Customers where CustomerId = @CustID”</span></div>
<div><span style="font-size:x-small;"> Dim cmd As SqlCommand = New SqlCommand(sql, conn)</span></div>
<div><span style="font-size:x-small;"> cmd.Parameters.AddWithValue(“CustID”, custid)</span></div>
<div><span style="font-size:x-small;"> conn.Open()</span></div>
<div><span style="font-size:x-small;"> Dim contNm As String = Convert.ToString(cmd.ExecuteScalar())</span></div>
<div><span style="font-size:x-small;"> Return contNm</span></div>
<div><span style="font-size:x-small;"> Catch ex As SqlException</span></div>
<div><span style="font-size:x-small;"> Return “error”</span></div>
<div><span style="font-size:x-small;"> Finally</span></div>
<div><span style="font-size:x-small;"> conn.Close()</span></div>
<div><span style="font-size:x-small;"> End Try</span></div>
<div><span style="font-size:x-small;"> End Function</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 4:</strong> We will now transform this method as a PageMethod and then call this method GetContactName() from client side code; i.e. using JavaScript. To enable the method as a PageMethod, add the attribute [WebMethod] on top of the method:</span></span></div>
<div><span style="font-family:Verdana;font-size:x-small;">C#</span></div>
<div><span style="font-size:x-small;">[<a id="KonaLink13" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;font-size:x-small;">System</span></a>.Web.Services.WebMethod]</span></div>
<div><span style="font-size:x-small;">public static string GetContactName(string custid)</span></div>
<div><span style="font-size:x-small;">{</span></div>
<div><span style="font-size:x-small;">}</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;">VB.NET</span></span></div>
<div><span style="font-size:x-small;">&lt;System.Web.Services.WebMethod()&gt; _</span></div>
<div><span style="font-size:x-small;"> Public Shared Function GetContactName(ByVal custid As String) As String</span></div>
<div><span style="font-size:x-small;"> End Function</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;">At the sametime, add the attribute</span> EnablePageMethods=”true” <span style="font-family:Verdana;">to the ScriptManager as shown below:</span></span></div>
<div>&lt;asp:ScriptManager ID=”ScriptManager1″ runat=”<a id="KonaLink10" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=109#" target="_top"><span style="color:#0000ff;">server</span></a>“ EnablePageMethods=”true”/&gt;</div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 5:</strong> Let us now create the JavaScript that will call this server side code. Add a javascript file called script.js to your solution (Right Click Project &gt; Add New Item &gt; Jscript File &gt; Rename file to script.js). Add the following code to the javascript file.</span></span></div>
<div><span style="font-size:x-small;">function CallMe(src,dest)</span></div>
<div><span style="font-size:x-small;"> { </span></div>
<div><span style="font-size:x-small;"> var ctrl = document.getElementById(src);</span></div>
<div><span style="font-size:x-small;"> // call server side method</span></div>
<div><span style="font-size:x-small;"> PageMethods.GetContactName(ctrl.value, CallSuccess, CallFailed, dest);</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-size:x-small;"> // set the destination textbox value with the ContactName</span></div>
<div><span style="font-size:x-small;"> function CallSuccess(res, destCtrl)</span></div>
<div><span style="font-size:x-small;"> { </span></div>
<div><span style="font-size:x-small;"> var dest = document.getElementById(destCtrl);</span></div>
<div><span style="font-size:x-small;"> dest.value = res;</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-size:x-small;"> // alert message on some failure</span></div>
<div><span style="font-size:x-small;"> function CallFailed(res, destCtrl)</span></div>
<div><span style="font-size:x-small;"> {</span></div>
<div><span style="font-size:x-small;"> alert(res.get_message());</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 6:</strong> We now need to reference this JavaScript file from our aspx page and invoke the ‘CallMe()’ method whenever the textbox loses focus. To do so:</span></span></div>
<div><span style="font-family:Verdana;font-size:x-small;">Add a reference to the javascript file in the body tag as shown below:</span></div>
<div><span style="font-size:x-small;">&lt;body&gt;</span></div>
<div><span style="font-size:x-small;">&lt;script type=”text/javascript” language=”javascript” src=”script.js”&gt; &lt;/script&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;form id=”form1″ runat=”server”&gt; </span></div>
<div><span style="font-size:x-small;">………</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;"><strong>Step 7:</strong> To invoke the methods whenever the textbox looses focus, add these lines of code in the Page_Load() event</span></span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;">C#</span></span></div>
<div><span style="font-size:x-small;">if (!Page.IsPostBack)</span></div>
<div><span style="font-size:x-small;"> {</span></div>
<div><span style="font-size:x-small;"> txtId1.Attributes.Add(“onblur”, “javascript:CallMe(‘” + txtId1.ClientID + “‘, ‘” + txtContact1.ClientID + “‘)”);</span></div>
<div><span style="font-size:x-small;"> txtId2.Attributes.Add(“onblur”, “javascript:CallMe(‘” + txtId2.ClientID + “‘, ‘” + txtContact2.ClientID + “‘)”);</span></div>
<div><span style="font-size:x-small;"> }</span></div>
<div><span style="font-family:Verdana;font-size:x-small;">VB.NET</span></div>
<div><span style="font-size:x-small;">If (Not Page.IsPostBack) Then</span></div>
<div><span style="font-size:x-small;"> txtId1.Attributes.Add(“onblur”, “javascript:CallMe(‘” &amp; txtId1.ClientID &amp; “‘, ‘” &amp; txtContact1.ClientID &amp; “‘)”)</span></div>
<div><span style="font-size:x-small;"> txtId2.Attributes.Add(“onblur”, “javascript:CallMe(‘” &amp; txtId2.ClientID &amp; “‘, ‘” &amp; txtContact2.ClientID &amp; “‘)”)</span></div>
<div><span style="font-size:x-small;">End If</span></div>
<div><span style="font-family:Verdana;font-size:x-small;">As shown above, we are using the Attributes.Add that lets us add an attribute to the server control’s System.Web.UI.AttributeCollection object. The function ‘CallMe’ kept in the ‘script.js’ file will be invoked. We are passing the source and destination textboxes as parameters. The source textbox will contain the CustomerID. The CustomerID will be looked up in the Customers table and the corresponding ‘ContactName’ will be retrieved in the destination textbox.</span></div>
<div><span style="font-size:x-small;"><span style="font-family:Verdana;">Well that is all that is needed to invoke server side code from client side. Run the code. Type ‘ALFKI’ in the first textbox and hit the tab key. You will see that the javascript function goes ahead and calls the PageMethod GetContactName() using </span>PageMethods.GetContactName. <span style="font-family:Verdana;">It passes the value of the source textbox which contains the CustomerID. The ‘ContactName’ returned is displayed in the second textbox below the first one, in our case the value displayed is ‘Maria Anders’.</span></span></div>
<div><strong><span style="font-size:large;"><span style="font-family:Cambria;color:#4f81bd;font-size:medium;">Troubleshooting: ‘PageMethods Is ‘Undefined’’ error</span></span></strong></div>
<div><span style="font-family:Verdana;font-size:x-small;">1.</span> <span style="font-family:Verdana;font-size:x-small;">Try setting EnablePageMethods=”true” in the script manager tag</span></div>
<div>&lt;asp:ScriptManager ID=”ScriptManager1″ runat=”server” EnablePageMethods=”true”/&gt;</div>
<div><span style="font-family:Verdana;font-size:x-small;">2.</span> <span style="font-family:Verdana;font-size:x-small;">Don’t add the javascript references or code in the &lt;head /&gt; section. Add it to the &lt;body&gt; tag.</span></div>
<div><span style="font-size:x-small;">&lt;body&gt;</span></div>
<div><span style="font-size:x-small;">&lt;script type=”text/javascript” language=”javascript” src=”script.js”&gt; &lt;/script&gt;</span></div>
<div><span style="font-size:x-small;"> &lt;form id=”form1″ runat=”server”&gt; </span></div>
<div><span style="font-size:x-small;"> &lt;/form&gt; </span></div>
<div><span style="font-size:x-small;">&lt;/body&gt;</span></div>
<div><span style="font-family:Verdana;font-size:x-small;">3.</span> <span style="font-family:Verdana;font-size:x-small;">Page methods needs to be static in code behind.</span></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=101&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/10/27/how-to-call-server-side-function-from-client-side-code-using-pagemethods-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Cache and Session?</title>
		<link>http://avaricesoft.wordpress.com/2009/07/13/what-is-cache-and-session/</link>
		<comments>http://avaricesoft.wordpress.com/2009/07/13/what-is-cache-and-session/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 14:52:46 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[Cache]]></category>
		<category><![CDATA[Session]]></category>
		<category><![CDATA[What is Cache]]></category>
		<category><![CDATA[What is Session]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=97</guid>
		<description><![CDATA[What is Session?
Session collection holds information for a single user, so it can be used in different pages. For example, you can use the Session collection to store theitems in the current user’s shopping basket on an e-commerce website. 
What is Cache?
Cache This collection allows you to store objects that are time-consuming to create so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=97&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>What is Session?</strong></p>
<p><em>Session collection holds information for a single user, so it can be used in different pages. For example, you can use the Session collection to store theitems in the current user’s shopping basket on an e-commerce website. </em></p>
<p><strong>What is Cache?</strong><br />
<em>Cache This collection allows you to store objects that are time-consuming to create so they can be reused in other pages or for other clients. This technique, when implemented properly, can improve performance of your web pages.</em></p>
<p><em>regards,</em></p>
<p><em>Muhammad Kalim</em></p>
<p><em><a title="AVARICESOFT [Implementation of New and Emerging Technologies] " href="http://www.avaricesoft.net" target="_blank">http://www.avaricesoft.net</a></em></p>
<p><em>@MSN: <a title="Email or @MSN" href="mk_fastian@hotmail.com">mk_fastian@hotmail.com</a></em></p>
<p><em><a title="AVARICESOFT BLOG" href="http://Avaricesoft.wordpress.com" target="_self">http://Avaricesoft.wordpress.com</a><br />
</em></p>
<p><em>+92 333 2352452<br />
</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=97&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/07/13/what-is-cache-and-session/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Sending the User to a New Page</title>
		<link>http://avaricesoft.wordpress.com/2009/06/10/sending-the-user-to-a-new-page/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/10/sending-the-user-to-a-new-page/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 13:30:48 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[C#.net]]></category>
		<category><![CDATA[advantages of server transfer in asp.net]]></category>
		<category><![CDATA[redirect method]]></category>
		<category><![CDATA[redirect method in asp.net]]></category>
		<category><![CDATA[reponse method]]></category>
		<category><![CDATA[response method in asp.net]]></category>
		<category><![CDATA[sending the user to new page using asp.net C#]]></category>
		<category><![CDATA[Sending user to new page in asp.net]]></category>
		<category><![CDATA[server.transfer in asp.net]]></category>
		<category><![CDATA[url not change for server.transfer method.]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=93</guid>
		<description><![CDATA[In the currency converter example, everything took place in a single page. In a more typical website, the user will need to surf from one page to another to perform different tasks or complete a single operation.There are several ways to transfer a user from one page to another. One of the simplest is to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=93&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In the currency converter example, everything took place in a single page. In a more typical website, the user will need to surf from one page to another to perform different tasks or complete a single operation.There are several ways to transfer a user from one page to another. One of the simplest is to use an ordinary &lt;a&gt; anchor element, which turns a portion of text into a hyperlink. In this example, the word here is a link to another page: Click &lt;a href=&#8221;newpage.aspx&#8221;&gt;here&lt;/a&gt; to go to newpage.aspx. Another option is to send the user to a new page using code. This approach is useful if you want to use your code to perform some other work before you redirect the user. It’s also handy if you need to use code to decide where to send the user. For example, if you create a sequence of pages for placing an order, you might send existing customers straight to the checkout while new visitors are redirected to a registration page. To perform redirection in code, you first need a control that causes the page to be posted back. In other words, you need an event handler that reacts to the ServerClick event of a control such as HtmlInputButton or HtmlAnchor. When the page is posted back and your event handler runs, you can use the HttpResponse.Redirect() method to send the user to the new page. Remember, you can get access to the current HttpResponse object through the Page.Response property. Here’s an example that sends the user to a different page in the<br />
same website directory:</p>
<p><span style="color:#ff6600;"><strong>Response.Redirect(&#8220;newpage.aspx&#8221;);</strong></span></p>
<p>When you use the Redirect() method, ASP.NET immediately stops processing the page<br />
and sends a redirect message back to the browser. Any code that occurs after the Redirect() call won’t be executed. When the browser receives the redirect message, it sends a request for the new page. You can use the Redirect() method to send the user to any type of page. You can even send the user to another website using an absolute URL (a URL that starts with http://), as shown here:</p>
<p><strong><span style="color:#ff6600;">Response.Redirect(&#8220;http://www.prosetech.com&#8221;);</span></strong></p>
<p>ASP.NET gives you one other option for sending the user to a new page. You can use the HttpServerUtility.Transfer() method instead of Response.Redirect(). An HttpServerUtility object is provided through the Page.Server property, so your redirection code would look like this:</p>
<p><span style="color:#ff6600;"><strong>Server.Transfer(&#8220;newpage.aspx&#8221;);</strong></span></p>
<p>The advantage of using the Transfer() method is the fact that it doesn’t involve the<br />
browser. Instead of sending a redirect message back to the browser, ASP.NET simply starts processing the new page as though the user had originally requested that page. This behavior saves a bit of time, but it also introduces some significant limitations. You can’t use Transfer() to send the user to another website or to a non-ASP.NET page (such as an HTML page). The Transfer() method only allows you to jump from one ASP.NET page to another, in the same web application. Furthermore, when you use Transfer() the user won’t have any idea that another page has taken over, because the browser will still show the original URL. This can cause a problem if you want to support browser bookmarks. On the whole, it’s much more common to use<br />
<span style="color:#ff6600;"><strong>HttpResponse.Redirect() than HttpServerUtility.Transfer().</strong></span></p>
<blockquote><p><em>Regards,</em></p>
<p><em>Muhammad Kalim (+92-333-2352452)<br />
</em></p>
<p><em>Manager Business Development <a title="AVARICESOFT -- IMPLEMENTATION OF NEW AND EMERGING TECHNOLOGIES." rel="#someid5" href="http://www.avaricesoft.com/" target="_blank">AVARICESOFT.com</a></em></p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=93&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/10/sending-the-user-to-a-new-page/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Session in asp.net</title>
		<link>http://avaricesoft.wordpress.com/2009/06/10/session-in-asp-net/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/10/session-in-asp-net/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 13:22:36 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[Session State]]></category>
		<category><![CDATA[Session in asp.net]]></category>
		<category><![CDATA[How to create Session in asp.net]]></category>
		<category><![CDATA[How to remove session State in asp.net]]></category>
		<category><![CDATA[How to create Session]]></category>
		<category><![CDATA[How to remove Session]]></category>
		<category><![CDATA[What is Session]]></category>
		<category><![CDATA[What is session in asp.net]]></category>
		<category><![CDATA[how to save session state in asp.net]]></category>
		<category><![CDATA[Session State Management]]></category>
		<category><![CDATA[session state management in asp.net]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=91</guid>
		<description><![CDATA[What is Session:
This collection holds information for a single user, so it can be used in
different pages. For example, you can use the Session collection to store the
items in the current user’s shopping basket on an e-commerce website
First you should include the Session Collection by using Clause
using System.Web.SessionState;
How to Save the Data from Session State [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=91&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1><span style="color:#00ccff;"><span style="text-decoration:underline;"><strong>What is Session:</strong></span></span></h1>
<p>This collection holds information for a single user, so it can be used in<br />
different pages. For example, you can use the Session collection to store the<br />
items in the current user’s shopping basket on an e-commerce website</p>
<p><strong>First you should include the Session Collection by using Clause</strong></p>
<p><span style="color:#ff0000;"><strong>using System.Web.SessionState;</strong></span></p>
<p><span style="color:#00ccff;"><span style="text-decoration:underline;"><strong>How to Save the Data </strong></span><span style="text-decoration:underline;"><strong>from</strong></span><span style="text-decoration:underline;"><strong> Session State / How to Create the Session State in asp.net 2008:</strong></span></span></p>
<ul>
<li><strong> </strong><em>suppose their is a class of user&#8217;s &#8211;&gt;</em><em>save the session object of username for userclass.</em></li>
</ul>
<p><span style="color:#ff0000;"><strong>userclass uc = new userclass();<br />
</strong></span></p>
<p><span style="color:#ff0000;"><strong>Session["username"] = uc.getusername();</strong></span><em> </em></p>
<ul>
<li><em>getusername() return the username of string of the above code<br />
</em></li>
</ul>
<p><span style="color:#00ccff;"><span style="text-decoration:underline;"><strong>How to Reterieve the Data Session </strong></span><span style="text-decoration:underline;"><strong>from</strong></span><span style="text-decoration:underline;"><strong> State / How to Get the Date from Session State in asp.net 2008:</strong></span></span></p>
<ul>
<li><em> Reterieve the data in other page using Session State of username here it is:</em></li>
</ul>
<p><span style="color:#ff0000;"><strong>userclass uc1 = userclass();<br />
</strong></span></p>
<p><span style="color:#ff0000;"><strong>uc1.setusername(Session["username"].ToString());</strong></span><em> </em></p>
<ul>
<li><em>setusername is the public function of userclass which takes string parameter</em></li>
</ul>
<p><span style="color:#00ccff;"><span style="text-decoration:underline;"><strong>Remove Unsused object of the Session State:</strong></span></span></p>
<ul>
<li><em>you should remove the Session State manually by coding its a best practices of the programmer and client hand side and server modules.</em></li>
</ul>
<p><span style="color:#ff0000;"><strong>Session.["username"] = null; </strong></span></p>
<ul>
<li><em>not remove the Session State is define because where u have to null the Session State not remove its depend upon case to case.</em></li>
</ul>
<p><span style="color:#ff0000;"><strong>Session.Remove["username"]</strong></span></p>
<ul>
<li><em>if you null the Session State then its not remove so best practice is to remove the Session State not null<br />
</em></li>
</ul>
<p><em>Thanks All.</em></p>
<blockquote><p>
<em>Regards,</em></p>
<p><em>Muhammad Kalim (+92-333-2352452)<br />
</em></p>
<p><em>Manager Business Development <a title="AVARICESOFT -- IMPLEMENTATION OF NEW AND EMERGING TECHNOLOGIES." href="http://www.avaricesoft.com" target="_blank">AVARICESOFT.com</a><br />
</em></p></blockquote>
<p style="text-align:center;"><span style="color:#ff9900;"><strong><em><span style="text-decoration:underline;">if you have any query then write the comments.. i will help u out</span></em></strong></span><em><br />
</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=91&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/10/session-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>revelation of quran</title>
		<link>http://avaricesoft.wordpress.com/2009/06/09/revelation-of-quran/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/09/revelation-of-quran/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 02:14:07 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=88</guid>
		<description><![CDATA[revelation of quran
Well before God&#8217;s revelation marked him as a Prophet, Mohammad(p) had rejected the religion of Arabia. This religion called on the worship of several gods, and Mohammad felt that these idols were not responsible for life or creation. Questioning the religion that he was born into, Mohammad (p) found peace in reflection, meditation, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=88&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>revelation of quran</strong></p>
<p>Well before God&#8217;s revelation marked him as a Prophet, Mohammad(p) had rejected the religion of Arabia. This religion called on the worship of several gods, and Mohammad felt that these idols were not responsible for life or creation. Questioning the religion that he was born into, Mohammad (p) found peace in reflection, meditation, and contemplation; however, these acts of private worship did not give Mohammad the answers that he was searching for. In his late thirties Mohammad began a practice of retirement, where he would seclude himself from his family and relations and spend several days in a cave on top of a mountain two miles outside of Makkah. He continued this for many years: during the month of Ramadan, Mohammad would often spend the entire month in seclusion, for some instinct must have told him that in this holiest month he would find the answers to his questions. So, it was in his fortieth year that Mohammad (p) received the revelation from God.</p>
<p>While engaged in worship in a corner of the cave of Hira in the heart of the night, the orphan son of Abdullah who had never studied or attended a school, was suddenly shaken by the summons, &#8220;O Muhammad!&#8221; followed by the command to recite, this being the beginning of revelation. A wave arose from the limitless ocean of Divinity, rent the breast of the Prophet, bewildered and anxious, and filled to the brim the cup of his spirit.<br />
Mohammad was shocked and afraid. How could there be another voice in the cave when he was all alone? Nevertheless, he replied: &#8220;I am not one of those who can read&#8221;. After his answer, he was taken up, and violently hugged and then set free: the voice repeated, &#8220;Read&#8221;. Mohammad could only give the same answer: &#8220;I am not one of those who can read&#8221;. The being repeated the same action, hugging him again. Once again it commanded him to &#8220;Read&#8221;. This time Mohammad gave a different answer: he said, &#8220;What shall I read?&#8221;, and the voice said:</p>
<p>&#8220;Read! In the Name of your Lord, who has created you! He created man from a clot of blood. Read, and your Lord is the Most Gracious, He who has taught by the pen, Taught man what he did not know.&#8221;<br />
[Al-Quran: 96:1-4]</p>
<p>The shining of a light from the realm of the unseen covered and enveloped his being and shone forth on his fair features, giving rise to new and bright life in the darkness of the night. Then, with a painful tumult in his heart and bearing on his shoulders the heaviest responsibility conceivable, he set out for home from the cave of Hira, destined to become the teacher of all human beings and to assume the leadership of humanity on its long march forward.</p>
<p>What force was it that had disquieted him despite his infinite patience, made him anxious despite all his tranquil courage, and plunged his whole being into painful turmoil? Thereafter the envoy of revelation came repeatedly, reciting verses to him, profound and astounding verses that bore no resemblance from the point of view of style and content either to the words of the Prophet himself, eloquent as they were, or to the conventional prose and poetry of the age.</p>
<p>Although the Arabs of the Age of Ignorance knew neither how to read nor how to write and had no historians, philosophers or scholars, they were famed for the excellence of their poetry and the eloquence of their speech. The Prophet, however, had never participated before the beginning of his mission in the cultivation of the arts of poetry and eloquence.<br />
His conduct, on the one hand, and the verses of the Quran, on the other, both testify that he made no compromises in conveying his message. He conveyed the message that he had been ordered to deliver clearly, unambiguously and in utter contradiction both with the beliefs and inclinations of the people and with his own immediate interests. He loudly proclaimed the revelation he had received to the evil and the ignorant, to a people made degenerate and corrupt by the worship of the idols they had fashioned themselves, and he informed them that their sole salvation lay in the worship of the One God.</p>
<p>The new factor that appeared at a particular time in the life of the Prophet and caused him to engage in unprecedented forms of activity was the wondrous phenomenon of revelation, the heavenly message which he as the most lofty and qualified of men had been chosen to receive. Before then, no preliminary effort or particular inclination had been seen on his part that might have led to the bringing about of the sudden and remarkable transformation of the world he was now about to accomplish.</p>
<p>The factor that had this profound effect on Muhammad, that changed that quiet and reflective man into an explosive source of revolutionary energy and enabled him to bring about such a profound transformation of humanity, from within the intense darkness of the Arabs&#8217; Age of Ignorance, was nothing other than revelation. It was a call that penetrated the very depths of the souls of human beings that melted the marrow of their bones, and directed all their strivings to the attainment of perfection.</p>
<p>The command of revelation negated all the false and lying criteria which human beings had regarded as the measure of goodness and considered the sole means of evaluating human characteristics and habits, while, in fact, clothing falsehood in the garment of truth. It brought into operation new and clear criteria which showed human beings the goals to which they should strive to advance and brought about creativity in their lives. The veil of ignorance and silence was torn apart, the human beings&#8217; energies were set to work, the power of thought within them was aroused, and their spirits were borne aloft toward the infinite summit of being.</p>
<p>A people who in their ignorance and lowliness would tear each apart on account of the most insignificant things and had lost all virtue, thanks to their various forms of enslavement, now became, through Islam and its great concept of monotheism &#8211; the true pillar of humanity and the breaker of idols &#8211; so elevated of spirit and so self-sacrificing that they happily abandoned both their lives and their property. The remarkable stories of self-sacrifice on the part of those early Muslims will stand eternally as examples of true nobility.<br />
The Prophet of Islam had the vision and belief of a world leader, but he began to proclaim his Divine summons to monotheism in a relatively restricted sphere, a closed environment where tribal institutions exercised great influence and idols were counted as the most sacred and beloved of objects. It was an environment that was not in any way prepared to accept the message of Divine unity.</p>
<p>The heavenly teachings of Islam and the culture to which they gave rise were superior not only to the intellectual atmosphere prevailing in the idolatrous society of the Arabs but also to all the religious doctrines and cultures of that age.</p>
<p>The program for reforming systems of thought and culture that had become corrupt was laid down by a man who had never studied, who was unlettered, and who knew nothing of the religious books or the civilization of his age.</p>
<p>At first he invited his relatives to worship the Creator, and then the people of Mecca and the Arabian Peninsula. Finally he proclaimed to the entire world his mission as the last of the Prophets.</p>
<p>The Prophet had been born into an environment where human beings engaged in empty boasting out of their shortsightedness and tribal mentality, where privileges were based on unjust social conditions and prejudices. Now he arose and swept aside all those false privileges. He established new values and concepts with respect to labor, life and social relations, in the framework of a series of rules and ordinances, and strove to concentrate all the goals and thoughts of the human being on a program for liberating peoples from slavery, and delivering the oppressed from the tyranny of emperors and kings. Even for those who do not regard these exalted aims as having a heavenly origin will admit that they are among the most exalted and previous values observable in human history.</p>
<p>What is significant about the Revelation, the Message of God, is that it was an act for which the Prophet (pbuh) was ready. Meaning, that he had already forsaken the beliefs of his people and his culture. Mohammad (pbuh) had proved himself ready for prophethood through his pious actions and behavior. Among his people he had already earned the name Al-Amin, The Trustworthy. Moreover, Mohammad (pbuh) was a mature man, one who had lived the majority of his life, and could devote the next twenty-three years of that life to the service of God.<br />
Since different verses of the Qur&#8217;an were being revealed as and when appropriate, it was not possible from the very beginning to write and preserve it in a book form. So, during the initial stage of Islam, major emphasis was laid on memory as a means of preserving the Qur&#8217;an.</p>
<p>When a revelation used to come in the very beginning, the Prophet (sallallahu alayhi wasallam) would tend to repeat its words instantly so that they would be memorized well enough. Thereupon, Allah Almighty directed him through the verses of Soorah Qiyaamah that he need not repeat words in a hurry immediately as revelation came. Allah Almighty would himself endow him with a memory that he will be unable to forget the words of the revelation once its descent has been completed. So it was that the moment the Qur&#8217;anic verses would come to him, they would be committed to his memory the next moment. Thus, the blessed chest of the Prophet (sallallahu alayhi wasallam), was the most protected vault of the Qur&#8217;an, in which there was no chance of even some common mistake, editing or alteration. Moreover, as a matter of additional precaution, he used to recite the Qur&#8217;an before angel Jibra&#8217;eel every year during the month of Ramadhaan; and the year he left this mortal world he completed a cumulative review of Qur&#8217;anic recitation twice with Jibra&#8217;eel. (Saheeh Bukhaari with Fat&#8217;hul Baari)</p>
<p>Again, as it was, he would not restrict his teachings of the Sahaabah (Companions) to just the meaning of the Qur&#8217;an, but had them memorize its words as well. Then, the revered Companions were themselves so enamored with a desire to learn and remember the Qur&#8217;an that every one of them was anxious to get ahead of the other. There were women who claimed no dowry from their husbands except that they would teach the Qur&#8217;an.</p>
<p>Hundreds of Companions, freeing themselves from all other concerns, had devoted their whole lives for this purpose. Not only did they memorize the Qur&#8217;an but also went on repeating it within the nightly prayers. &#8220;When someone migrated from Makkah and came to Madeenah&#8221;, says Ubaadah Ibne Saamit, &#8220;the Prophet (sallallahu alayhi wasallam) would entrust him to one of us Ansaar so that he could teach Qur&#8217;an to the new comer.&#8221; The mosque of the Prophet (sallallahu alayhi wasallam) was so filled with voices generated by learners and teachers of the Qur&#8217;an that the Prophet (sallallahu alayhi wasallam) had to ask them to lower their voices so that mistakes are not made. (Manaahilul &#8216;Irfaan)</p>
<p>Thus memorisation of the Qur&#8217;an was given more emphasis in early Islam as this was the only protected and trustworthy method given the conditions of that time. The reason is that the number of people who could read or write was very limited in those days. The means of publishing books, such as printing press, etc., were not there. Therefore, in that situation, if writing was taken to be sufficient, it would have neither been possible to spread the Qur&#8217;an on an extensive scale nor to protect it reliably. In its place, Allah Almighty had blessed the people of Arabia with a memory of such dimensions that thousands of poetic lines would normally rest in the memory of one person after another. Common ordinary villagers would remember by heart their genealogies and those of their families and unbelievably enough &#8211; even those of their horses! Therefore, this power of memory was well utilized for the conservation and protection of the Qur&#8217;an and it was through it that the verses and chapters of the Qur&#8217;an reached all over in to the far corners of Arabia.<br />
Besides having the Qur&#8217;an committed to memory, the Prophet (sallallahu alayhi wasallam) made special arrangements to have the Qur&#8217;an committed to writing as well. Zayd Ibne Thaabit says: &#8220;I used to write down the words of wahee for him. When wahee came to him he felt burning with heat and the drops of perspiration would start rolling down on his body like pearls. When this state would go away from him, I would present myself before him with shoulder-bone or a piece (of something else). He would go on dictating and I would go on writing. When I would be finished with writing, the shear weight of copying the Qur&#8217;an would give me the feeling that my leg is going to break and that I will never be able to walk. In any case, when I would be finished with writing, he would say: &#8216;Read.&#8217; I would read it back to him if there was a shortcoming, he would have it corrected and then let it be known to people. (Majma&#8217;uz Zawaa&#8217;id with reference to Tabraani)</p>
<p>Thus, there existed, during the time of the Prophet (sallallahu alayhi wasallam), a copy of the Noble Qur&#8217;aan which he had arranged to be committed to writing under his supervision. Although, it was not there as a formally prepared book, but it certainly was there in the form of various units of available writing materials. Along with it, it was also the practice of some revered Companions that they would make copies of the Qur&#8217;anic verses and keep them for personal recollection. This practice was common since the very early period of Islam. Accordingly, much before Umar embraced Islaam, his sister and brother-in-law had in their possession verses of the Qur&#8217;aan which they had written and kept in a book form. (Seerah Ibne Hishaam)</p>
<p>After reading about the Revelation of the Holy Qur&#8217;an, you might find the following of interest:<br />
<strong>How the Holy Qur&#8217;an was preserved:</strong> Zayd Ibne Thaabit says: &#8220;I used to write down the words of wahee for him. When wahee came to him he felt burning with heat and the drops of perspiration would start rolling down on his body like pearls. When this state would go away from him, I would present myself before him with shoulder-bone or a piece (of something else). He would go on dictating and I would go on writing. When I would be finished with writing, the shear weight of copying the Qur&#8217;an would give me the feeling that my leg is going to break and that I will never be able to walk. In any case, when I would be finished with writing, he would say: &#8216;Read.&#8217; I would read it back to him and if there was a shortcoming, he would have it corrected and then let it be known to people.<br />
<strong>The Demand of the Qur&#8217;an for a Direct Confrontation:</strong> From the very first day that the Prophet began preaching his message of monotheism, he summoned people also to a realistic vision of the world. When inviting them to faith, he addressed their wisdom and intelligence and called on them to use their eyes and their ears to perceive the truth.<br />
<strong>Do we deserve the Qur&#8217;an ?</strong> The student of the Qur&#8217;an will find out that, Qur&#8217;an is telling us that the messengers of Allah will lead the people from darkness into the light and that nowhere in the Qur&#8217;an does Allah tell us a story of a community misled by its messenger or given the wrong teachings by him.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=88&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/09/revelation-of-quran/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Islam and Islamism in Afghanistan</title>
		<link>http://avaricesoft.wordpress.com/2009/06/09/islam-and-islamism-in-afghanistan/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/09/islam-and-islamism-in-afghanistan/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 02:13:16 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=86</guid>
		<description><![CDATA[Islam and Islamism in Afghanistan
Kristin Mendoza
The last half-century in particular has seen the recurrent use of religious Islam as
ideology, often referred to as political Islam or Islamism, in groups espousing the
establishment of an Islamic state. Attention was drawn to Afghanistan when it became
the rallying point for Islamists in the 1980s. However, the earlier appearance of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=86&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Islam and Islamism in Afghanistan<br />
Kristin Mendoza</strong><br />
The last half-century in particular has seen the recurrent use of religious Islam as<br />
ideology, often referred to as political Islam or Islamism, in groups espousing the<br />
establishment of an Islamic state. Attention was drawn to Afghanistan when it became<br />
the rallying point for Islamists in the 1980s. However, the earlier appearance of an<br />
Islamist movement in Afghanistan in the 1960s and its subsequent development offer an<br />
instructive, unique lesson in understanding Islam and Islamism in Afghan society.<br />
This overview of the Islamist movement in Afghanistan is divided into three<br />
parts: It begins by defining the differing manifestations of Islam in Afghanistan,<br />
indicating how Islamism differs from or draws upon each manifestation in constructing<br />
its own vision. Then, the broader context of Islamism elsewhere in the Muslim world is<br />
discussed and analyzed. Although the theoretical basis for Islamism was constructed in<br />
the 1960s by Abu ‘Ala Mawdudi in Pakistan and Sayyid Qutb in Egypt, this paper will<br />
show that the Islamist movement in Afghanistan did not mirror those in either of these<br />
countries. To this end, this paper reviews the thought of the above-mentioned<br />
theoreticians of Islamism, and outlines historical and social conditions that colored the<br />
implementation of their models in their respective countries. This leads back to a<br />
discussion of the Afghan context, which makes up the final part of the paper. It is<br />
necessary to review salient aspects of the traditional structure of Afghan society, and the<br />
role Islam has historically played in Afghanistan to understand how the Islamist<br />
experience was shaped and constrained by this structure, as well as how the Islamist<br />
experience has altered it.<br />
As Afghanistan is now faced with the monumental task of rebuilding a state and<br />
legal system, Islamists are attempting to influence the reconstruction. This overview will<br />
underscore for those observing and participating in this process the importance of<br />
understanding the Afghan Islamist perspective, its historical underpinnings, and current<br />
demands.<br />
DEFINING ISLAM IN AFGHANISTAN<br />
It is important to illustrate the various manifestations of Islam in Afghanistan in order to<br />
provide the background for the emergence of Islamism there. Although the categorization<br />
of Islam into schools and trends can be uncomfortable and often misleads rather than<br />
directs, it is necessary if one is to understand the dynamics that are now playing out in<br />
Afghanistan. The designations that follow are not necessarily represented by distinct<br />
groups or individuals, nor are the terms themselves distinct; rather, some of the terms<br />
may overlap and be used together in various combinations to describe groups or<br />
individuals. It is only by identifying these categories that it becomes possible to<br />
determine how they influence or interact with the Islamists who are the focus of this<br />
paper. In this way, one can also deduce how those who are not part of the Islamist<br />
movement might view Islamist groups with varying degrees of hostility, sympathy, or<br />
2<br />
indifference. Moreover, an understanding of these designations is vital to the construction<br />
of broader categories and trends that may be applicable today.<br />
1. Popular Islam<br />
Afghanistan is a nation comprised almost completely of Muslims,1 and Islam permeates<br />
Afghan life, providing a system of norms and basis for social morality. The term “popular<br />
Islam” refers to the way in which the religion structures everyday life, inhabits language,<br />
makes experiences meaningful, and augments a cultural identity;2 it does not denote local<br />
variations of Islamic doctrine, however diluted they may be by pre-Islamic beliefs and<br />
customs.3 In this sense, the category is not defined in contradistinction to the religion as<br />
understood or practiced by the ‘ulama (religious scholars, singular: ‘alim) or Islamists,<br />
indicating a high/low division, but rather it is a common denominator for all groups in<br />
society.4<br />
Popular Islam includes a universal understanding of Islam as a system that enjoins<br />
good, and a belief that obedience to a number of specific rules ensures economic and<br />
social justice. Afghan popular Islam also includes an “Islam of the village,” one that is<br />
presided over by the mulla, a mosque functionary who has a monopoly on religious<br />
activity in the village, such as circumcision, marriage, and burial.5<br />
2. Islam in the Tribal Context<br />
While Islam connects virtually the entire Afghan population, the society is divided along<br />
ethnic and tribal lines. The largest ethnic group, the Pashtuns, is also a tribal group.<br />
Tribes are formulated through patrilineal descent, and the notional ancestor of all<br />
Pashtuns is Qays, who, it is said, received Islam directly from the Prophet Muhammad.<br />
Effectively, Pashtuns deny having any pre-Islamic past or experience of conversion.<br />
Being Muslim is thus inextricable from their tribal heritage.6<br />
In this way, what is Islamic and what is tribal overlap. Defense of tribal forms, for<br />
instance, can easily escalate into a defense of the faith, as demonstrated in the first<br />
Anglo-Afghan War and the jihad (struggle) against the Soviets, where tribes fought<br />
alongside one another against a non-Muslim entity. However, it is clear that conflicts do<br />
exist between tribal codes, for instance, and Islamic law. These conflicts are what bring<br />
the mulla into his authoritative role, clarifying “what the Book says,” referring to the<br />
1 The population is 99% Muslim, with approximately 80-85% of these being Sunni; the remaining 15-20%<br />
consists of Shi‘is, primarily Twelver Shi‘is, while Ismailis also have a community in Afghanistan. The<br />
small non-Muslim communities are made up of Hindus and Sikhs.<br />
2 Olivier Roy, Islam and Resistance in Afghanistan (Cambridge: Cambridge University Press, 1990), 31.<br />
3 See M. Nazif Shahrani, “Local Knowledge of Islam and Social Discourse in Afghanistan and Turkistan in<br />
the Modern Period,” in Turko-Persia in Historical Perspective, ed. Robert Canfield (Cambridge:<br />
Cambridge University Press, 1991), 161-188 for a debunking of the myth that rural inhabitants are cut off<br />
from the main currents of Islamic thought or ignorant of orthodox Islamic teachings.<br />
4 I rely on conceptions of popular culture (considering religion a part of culture) in formulating this<br />
definition of popular Islam. Peter Burke explains that traditional definitions of popular culture as the<br />
culture of the uneducated or non-elite are too narrow because they dismiss participation of the educated<br />
elite in popular culture. See Popular Culture in Early Modern Europe (New York: Harper &amp; Row), 1978.<br />
5 Roy, Islam and Resistance, 32.<br />
6 Jon Anderson, “How Afghans Define Themselves in Relation to Islam,” in Revolutions and Rebellions in<br />
Afghanistan, eds. M. Nazif Shahrani and Robert L. Canfield (Berkeley: University of California Press,<br />
1984), 274.<br />
3<br />
Quranic text, but also to its legal interpretation as embodied in fiqh (Islamic<br />
jurisprudence).7<br />
3. Textual Islam of the ‘Ulama<br />
In Afghanistan, as well as elsewhere in the Muslim world, the ‘ulama operate within a<br />
tradition of scholastic commentary and are defined by their education, not by<br />
membership in any formal institution. Fiqh is the body of applications of the Shari‘a<br />
(Islamic law) to society, of commentary developed over a thousand years by trained<br />
religious scholars, the ‘ulama, who read and interpret the Shari‘a by using a particular set<br />
of rules. Fundamental sources in Islam are the Quran and Sunna, the normative practice<br />
of the Prophet, but for the ‘ulama, these texts are not meaningful without commentaries<br />
and interpreters. Thus the textual Islam of the ‘ulama also includes the body of fiqh. In<br />
Afghanistan, this means Hanafi fiqh, the school of jurisprudence to which all Afghan<br />
Sunni Muslims adhere.8<br />
The ‘ulama conceive of society as being governed by law derived from the sacred<br />
text. It is important to note that the ‘ulama, who have expert knowledge of the sacred text<br />
and control its interpretation, acknowledge legitimacy of a de facto political power that<br />
governs areas where the text is silent. Historically, the ‘ulama, who seek to regulate<br />
society in an Islamic legal system where development and interpretation of the law do not<br />
depend on the state, are essentially concerned with the legalistic and juridical, not the<br />
political. However, as the state takes on more functions previously reserved for religious<br />
institutions, such as personal status law, the ‘ulama counter by making themselves heard<br />
in the political sphere.<br />
Essentially, the above description describes the ‘ulama in Afghanistan as well as<br />
in other parts of the Muslim world. It is important to note the following extenuating<br />
factors, that, combined, have challenged this one-dimensional characterization of the<br />
‘ulama: Sufism, reformist fundamentalism, and Islamism. These factors will be discussed<br />
at length below.<br />
4. Sufism<br />
Sufism is generally understood to be a mystical form of Islam that distinguishes between<br />
exoteric and esoteric revelation. Sufis seek esoteric revelation, an ascent to the Truth, or<br />
haqiqa, by undergoing spiritual initiation through a spiritual master. Most commonly, the<br />
spiritual master is called a shaykh or a pir and the pupil, a murid. The pupil follows a<br />
spiritual path (tariqa) to discover intuitive knowledge of the divine.<br />
Sufi orders do not prescribe any political program. On the contrary, Sufis<br />
typically shun worldliness. The anti-materialistic stance and meditative practices of Sufi<br />
orders mean that Sufis can be ascetic and reclusive. Many Sufi practices, such as total<br />
submission to a Sufi pir, recollection of God (dhikr) in ritualistic circles, and pantheistic<br />
forms of saint worship, do not conform to the orthodox views represented by the formal<br />
intellectualism of the ‘ulama.9 The ‘ulama have historically vacillated between resisting<br />
7 Ibid., 278.<br />
8 The applicable Shi‘i jurisprudence is referred to as Ja‘fari fiqh.<br />
9 Basheer M. Nafi, The Rise and Decline of the Arab-Islamic Reform Movement (London: The Institute of<br />
Contemporary Islamic Thought, 2000), 13.<br />
4<br />
and tolerating these devotional practices of popular piety; the tolerance of Sufism has<br />
even extended to the inclusion of numbers of pirs in its ranks.<br />
The three dominant Sufi orders found in Afghanistan are the Naqshbandi, the<br />
Qadiri, and the Cheshti. The above characterization of Sufis is challenged in Afghanistan<br />
by a form of Sufism that does not threaten the textual Islam of the ‘ulama, a product of<br />
the reformist movement of Ahmed Sirhindi, discussed below, and despite the common<br />
association of unorthodox practices with Sufism, many Afghan ‘ulama are also attached<br />
to a Sufi order and revered as pirs, especially in the north. The pir-‘alim (master-scholar)<br />
practices a form of Sufism that does not rival formal religion, but rather, provides a more<br />
spiritual dimension for the ‘alim who foremost respects the Shari‘a. The dominant<br />
Naqshbandi order is most commonly associated with this more “orthodox” Sufism, but<br />
there are also some Cheshti and Qadiri brotherhoods that practice Sufism in a similar<br />
way.10<br />
Maraboutism is a variation of Sufism in Afghanistan that involves a collective<br />
allegiance of a clan or tribe to a family of holy men. A disciple has a looser individual<br />
relationship to the pir. Hence, there is more of a superstitious veneration than a close<br />
master-pupil relationship involved. For example, the disciple only makes an annual<br />
pilgrimage to his master. The pir is not an ‘alim and Marabout Sufism can be described<br />
as anti-clerical. This type of Sufism is more prominent in the south and often associated<br />
with the Qadiri order.11<br />
5. Reformist Fundamentalism<br />
The introduction of the term “fundamentalism” is fraught with difficulties. Nonetheless,<br />
it is a useful term if sufficiently clarified. Fundamentalism can denote a broad spectrum<br />
of attitudes. Foremost, fundamentalism implies a return to first things.12 This paper<br />
primarily focuses on three variants of fundamentalism. The madrasa variant calls for a<br />
return to the study of the Quran and Sunna, the basis of Islam, without reference to the<br />
four schools of fiqh (Hanafi, Maliki, Hanbali, and Shafi‘i). The fundamentalism variant<br />
of the ‘ulama espouses a return to religious law, and, as discussed above, includes study<br />
of fiqh commentaries as well as of the sacred texts. This “return” involves both study and<br />
implementation of the Shari‘a. Last, the Islamist variant propogates a return to practices<br />
of the first Muslim community; by advocating an Islamic state, the Islamists are seeking<br />
to reconstruct the social and political life of the Muslim community under Muhammad’s<br />
leadership. For Islamists, the implementation of the Shari‘a alone does not qualify a state<br />
as Islamic. The head of such a state should be the virtuous Commander of the Faithful<br />
(amir al-mu’minin), chosen according to Islamic principles, and all institutions should be<br />
based on the Quran and Sunna.13<br />
Two reform movements emerged in the Indian subcontinent (Deobandism) as<br />
well as Saudi Arabia (Wahhabism) that have profoundly influenced Afghanistan. These<br />
movements can both be described as fundamentalist movements, most accurately ones<br />
10 Roy, Islam and Resistance, 39, 40.<br />
11 Ibid., 40-41.<br />
12 Ibid., 3. Roy describes three variants: return to religious practice (fundamentalism of émigré circles),<br />
return to the Shari‘a (fundamentalism of the ‘ulama), and return to the study of the Quran and Sunna<br />
(fundamentalism of the madrasa). The first variant is irrelevant in our case, while the last two are<br />
insufficient to explain the way in which Islamists can be “fundamentalists” as well.<br />
13 Olivier Roy, From Holy War to Civil War (Princeton: Darwin Press, 1995), 35.<br />
5<br />
corresponding to the fundamentalism of the madrasa. The movements differ from each<br />
other most significantly in how each views Sufism, and this has clear implications for<br />
their potency in Afghanistan, a country where Sufism, in its myriad forms, is especially<br />
pervasive.<br />
5.a. Deobandism<br />
Ahmad Sirhindi, a Naqshbandi Sufi and an ‘alim born in India in the sixteenth century,<br />
began a movement that aimed to purify Islam of Hindu influence by returning to its basic<br />
sources (Quran and Sunna), while maintaining the integrity of its spiritual dimension.<br />
Thus he was able to formulate a form of Sufism that could coexist with the textual Islam<br />
of the ‘ulama by bringing it under the aegis of the Shari‘a. He emphasized that Truth<br />
(haqiqa) can be nothing but the Truth of the Shari‘a, and that the test of an individual’s<br />
ascent to God is the ability of that person to return to the world, to act, and to struggle<br />
within society.14 He advised that if Sufi teachings contradicted the strict teachings of<br />
orthodox Islam, these Sufi teachers should not be followed.15 While historically<br />
Naqshbandi Sufis were reclusive, Sirhindi stressed the importance of a strong relationship<br />
between the pir-‘alim and political circles, believing that the ruler was instrumental in<br />
guiding Muslims along the straight path.16 Sirhindi’s teachings were the reaction of an<br />
orthodox ‘alim and Naqshbandi shaykh to the syncretic practices in India at the time, and<br />
the Naqshbandi order that followed his teachings was henceforth known as the<br />
Naqshbandiyya Mujaddidiyya (mujaddid means “renewer”).17 A branch of his family,<br />
the Mujaddidis settled in Kabul in the nineteenth century, and the Naqshbandi order<br />
became the dominant Sufi order in Afghanistan.<br />
Shah Waliullah (d. 1762), also an Indian Sufi and an ‘alim, continued the work of<br />
Sirhindi. After embarking on the Islamic pilgrimage to Mecca, he joined study circles in<br />
Medina under the leadership of Shaykh Muhammad Hayat al-Sindi, who also taught<br />
Muhammad ‘Abd al-Wahhab, discussed below. Upon his return to India, he increasingly<br />
emphasized unity, and thus tried to reconcile differences among the founders of the four<br />
schools of fiqh. He asserted that the truth did not lie within the boundaries of one school,<br />
and to this end, he stressed the importance of ijtihad, interpretation through individual<br />
reasoning, of the only eternally true sources, the Quran and Sunna. Shah Waliullah also<br />
sought to bridge the Sunni-Shi‘i divide by repositioning their differences within the<br />
broader boundaries of Islam. His fundamentalist approach at times seemed to preclude<br />
approval of Sufism, but he asserted that as an individual pursuit, it could be<br />
accommodated, and indeed, for him, it still offered a path to experience of the divine.<br />
This attests to the popularity of Sufism in the region and the difficulty that reformist<br />
‘ulama experienced in their attempts to weaken its influence in the Indian subcontinent.18<br />
A group of ‘ulama in India, claiming the authority of Shah Waliullah, founded a<br />
madrasa at Deoband in 1867.19 This Deoband school, however, did not purge its<br />
curriculum of all schools of fiqh in favor of the Quran and Sunna alone, but rather kept to<br />
14 Fazlur Rahman. Revival and Reform in Islam: A Study of Islamic Fundamentalism (Oxford: Oneworld,<br />
2000), 168.<br />
15 Nafi, The Rise and Decline of Arab-Islamic Reform Movement, 19.<br />
16 Rahman, Revival and Reform in Islam, 166.<br />
17 Nafi, The Rise and Decline of the Arab-Islamic Reform Movement, 20.<br />
18 Ibid., 21-23.<br />
19 Roy, Islam and Resistance, 57.<br />
6<br />
strict orthodoxy in accordance with Hanafi fiqh, and theology (works by al-‘Ashari).<br />
While rejecting the cult of the saints more often found in Maraboutism, and associated<br />
with the puritan practices of the Barlevis, the Deoband school did accept the practice of<br />
Sufism purged of unorthodox elements, and many teachers were associated with<br />
Naqshbandi or Qadiri orders. Here we see the enduring influence of Sufism and Hanifism<br />
on the Indian subcontinent. The thousands of madrasas that later appeared and call<br />
themselves Deobandi are not necessarily formally tied to the original Deoband school,<br />
but unequivocally share the same doctrinal orientation.20<br />
Due to a dearth of prestigious private madrasa networks in Afghanistan, many<br />
Afghan ‘ulama are products of the Deobandi madrasa system, influenced by Ahmad<br />
Sirhindi and Shah Waliullah.21 Thus, the significance of these reformers to Afghanistan’s<br />
current situation, though outside the fold of Afghan society, cannot be overemphasized.<br />
From 1920 on, however, when study at the Deoband school was prohibited, some<br />
aspiring Afghan scholars began to seek their religious education at the conservative al-<br />
Azhar University in Egypt.22 In the 1940s, competition to the private madrasa system in<br />
Afghanistan came in the form of government madrasas. Later, Islamists and Wahhabis<br />
also began to set up madrasa networks there. 23<br />
5.b. Wahhabism<br />
Muhammad Ibn ‘Abd al-Wahhab (d. 1792) was a contemporary of Shah Waliullah. His<br />
writings criticized the beliefs and customs of the Najdis in the Arabian Peninsula, where<br />
social relations were organized on the basis of a customary code and parts of Islamic law<br />
were fused with local traditions. Like Shah Waliullah, he pushed for a greater influence<br />
of the orthodox ‘ulama. Similarly, it was after his stay in Medina that he began<br />
articulating his opposition to what he saw as non-Islamic aspects of Muslim life. He also<br />
traveled to Basra, where he encountered a mixed Sunni-Shi‘i population, which he<br />
decried. This provoked his expulsion from the city by local ‘ulama. His main concern,<br />
unlike Shah Waliullah, was purity rather than unity.<br />
Ibn ‘Abd al-Wahhab saw society in religious terms, and nowhere did he advocate<br />
societal restructuring along political lines. His work was grounded strictly in the text of<br />
the Quran and Sunna, and he gave no role to established methodology used to derive<br />
fiqh.24 However, after Wahhabism became the foundation of the Saudi state, it was<br />
increasingly associated with the Hanbali school of fiqh.<br />
Both Shah Waliullah and Ibn ‘Abd al-Wahhab gave primacy to the sacred texts,<br />
making them both fundamentalist reformers. However, Wahhabism is distinguished by its<br />
puritanical approach reflected in its total rejection of Sufism and hostility to Shi‘ism.<br />
Wahhabism has been influential in Central Asia since 1912 when a Medina native set up<br />
20 Muhammad Qasim Zaman, The Ulama in Contemporary Islam (Princeton: Princeton University Press,<br />
2002), 11. Ahmed Rashid notes that by 1967, there were over 9,000 Deobandi madrasas across south Asia.<br />
Taliban: Militant Islam, Oil and Fundamentalism in Central Asia (New Haven: Yale University Press,<br />
2000), 88.<br />
21 Roy, Islam and Resistance, 45.<br />
22 Eden Naby, “The Changing Role of Islam as a Unifying Force in Afghanistan,” in The State, Religion<br />
and Ethnic Politics: Afghanistan, Iran and Pakistan, eds. Ali Banuazizi and Myron Weiner (Syracuse:<br />
Syracuse University Press, 1986), 134.<br />
23 Roy, Islam and Resistance, 58.<br />
24 Nafi, The Rise and Decline of the Arab-Islamic Reform Movement, 24-28.<br />
7<br />
Wahhabi cells in Tashkent and the Ferghana Valley.25 In the 1950s, Wahhabis began<br />
establishing madrasas in the North-West Frontier Province of Pakistan, where many<br />
Afghans received schooling. Wahhabism also inspired provinces east of Kabul from the<br />
1950s onward.26 Though still relatively small, a Wahhabi following developed further<br />
after Saudi arms and money began to flow to the region in the 1980s.<br />
6. Shi‘ism<br />
The development of Shi‘ism finds its origins in the seventh century, when Muslims were<br />
faced with the issue of succession following the death of the Prophet Muhammad. The<br />
Party of ‘Ali (shi‘at ‘Ali), cousin and son-in-law to the Prophet, supported him as the<br />
Prophet’s rightful successor, although Abu Bakr emerged as the second leader of the<br />
Muslim community, despite these claims. Shi‘is, therefore, see ‘Ali’s descendants as the<br />
rightful leaders (Imams) of the Muslim community. Shi‘is and Sunnis also disagree as to<br />
the religious dimension of leadership. Sunnis insist that the leader of the community does<br />
not possess divine power, while Shi‘is believe that the Imams are imbued with<br />
infallibility, and consider them vessels through which God provides guidance to the<br />
community. While the argument surrounding succession is the historical determiner of<br />
the split, Shi‘is subsequently developed their own rich theological and legal literature,<br />
and are themselves split into multiple sectarian branches.<br />
The Shi‘a, who make up approximately 15-20 % of Afghanistan, are mainly<br />
comprised of ethnic Hazara and Qizilbash. At the level of popular Islam, there are many<br />
concepts and rituals common to Sunnis and Shi‘is, and at the village level, differences<br />
between a Shi‘i mulla and a Sunni mulla are difficult to ascertain.27 Shi‘i ‘ulama,<br />
however, are educated in Iran or Iraq (Qom or Najaf) and each is trained as a mujtahid<br />
(person qualified to interpret Islamic law through ijtihad). While this paper deals<br />
primarily with Sunnis, the Shi‘i presence in Afghanistan is important to recognize, as the<br />
Shi‘a there did undergo a process of politicization similar to Sunni Islamists that are the<br />
focus of this paper.<br />
7. Pan-Islamism<br />
The unity of the entire community of Muslims (umma) is for many Muslims, and<br />
particularly for the ‘ulama, an eternal fact unconnected with political realities. The<br />
political expression of pan-Islamism was a response to colonial expansion in the Muslim<br />
world and was articulated by the teachings of Jamal al-Din al-Afghani (d. 1897), who<br />
spent his life traveling and propagating anti-imperialist pan-Islamism across the Muslim<br />
world.<br />
Pan-Islamism for al-Afghani represented a unifying ideology that would mobilize<br />
believers to resist colonial forces. The strength of the West was seen in direct proportion<br />
to the decadence of Muslim societies. Revival and purification were necessary, and return<br />
to the Shari‘a a concomitant imperative. Al-Afghani believed that Muslim countries did<br />
not need Western laws to treat new phenomena, and he opposed the adoption of<br />
25 Rashid, Taliban, 85.<br />
26 Roy, Islam and Resistance, 72.<br />
27 Ibid., 51.<br />
8<br />
European courts and legal codes in Muslim countries.28 Thus, he advocated resistance to<br />
foreign encroachment and tried to arm Muslims with the knowledge that their own<br />
religion was sufficient to treat any new situation. Essential to his thinking was the<br />
concept of a universal caliphate to implement the Shari‘a. For this reason, pan-Islamism<br />
rejects nationalism, viewing it as divisive. Pan-Islamism as a political expression is in<br />
many ways the precursor to Islamist movements described herein. The primary<br />
distinction is that pan-Islamism is necessarily at odds with nationalism, a framework in<br />
which Islamists operate, though at times reluctantly.29<br />
Despite the fact that al-Afghani spent most of his early life in Afghanistan,30 pan-<br />
Islamism in its strictest sense did not take root in Afghanistan; rather, pan-Islamic<br />
sentiment was often manipulated by rulers in Afghanistan in the realm of foreign policy.<br />
In this way, Islam could not only be used to consolidate a nascent state, such as the ruler<br />
Abdur Rahman did in the late nineteenth century, but also to support foreign policy<br />
initiatives in the name of Muslim solidarity. These initiatives included campaigns of<br />
conquest as well as military aid to Muslims of other nations involved in conflict with<br />
non-Muslims.31 Such politics continued into the reign of Abdur Rahman’s successor, his<br />
son Habibullah, who was advised by the Afghan reformer Mahmud Tarzi (d. 1933). Tarzi<br />
had become familiar with pan-Islamic ideas during a brief period of exile in Damascus;<br />
he was most attracted to pan-Islamic arguments for modernization and did not advocate<br />
an Islamic caliphate.32<br />
ISLAMISM (POLITICAL ISLAM)<br />
As mentioned above, Islamism is the natural consequence of the pan-Islamism<br />
formulated by Jamal al-Din al-Afghani, in that pan-Islamism was forced to operate in a<br />
system of modern nation-states. When al-Afghani traveled to Egypt in 1871, he taught at<br />
al-Azhar University, and his most devoted student and disciple, Muhammad ‘Abduh,<br />
placed al-Afghani’s teachings within the Egyptian context. ‘Abduh agreed that the reform<br />
of Islam was necessary to resist the West, then encroaching on the Egyptian state in the<br />
form of the British colonialists. While he propounded the pan-Islamist ideology of his<br />
mentor, increasingly ‘Abduh spoke in terms of Egypt, abandoning language that referred<br />
to a caliphate. ‘Abduh often defended the concept of watan (nation), which ran counter to<br />
the Islamic ideal of the umma (Islamic community). 33 Overall, ‘Abduh concentrated his<br />
efforts more locally than al-Afghani.<br />
28 Walid Mahmoud Adbelnasser, The Islamic Movement in Egypt (London: Kegan Paul International,<br />
1994), 30.<br />
29 For example, initially, Mawdudi opposed the creation of Pakistan. Islamist movements are generally torn<br />
between being national political parties contending for control of the state and being part of the struggle to<br />
achieve the realization of an ideal Muslim community, believing as they do that Islam offers a universal<br />
standard. See Frederic Grare, Political Islam in the Indian Subcontinent: The Jamaat-i-Islami (New Dehli:<br />
Manohar Publishers, 2002), 11-13.<br />
30 Nafi, The Rise and Decline of the Arab-Islamic Reform Movement, 34.<br />
31 Roy, Islam and Resistance, 62.<br />
32 Asta Olesen, Islam and Politics in Afghanistan (Richmond: Curzon Press, 1995), 99.<br />
33 Monroe Berger comments on a tendency in Islam to alternate between these two themes, as it at once<br />
instills in believers a strong sense of solidarity (as in the construct of the umma), as well as free association<br />
(whether through the watan, “nation,” or other organizations) in which believers achieve the common goal<br />
of the right to individual conduct. Berger, Islam in Egypt Today: Social and Political Aspects of Religion<br />
9<br />
‘Abduh referred to the movement he and al-Afghani advanced as “salafi.” Salaf<br />
literally means “forefathers,” and generally refers to the first generation of the<br />
Companions of the Prophet.34 Salafis assert that the pure Islam of the early days of their<br />
forefathers was rational, practical and scientifically sound, and thus flexible and dynamic.<br />
According to the Salafis, Islam is inherently adaptable, and has been debilitated by the<br />
rigid structure imposed upon it by later generations. In advocating a return to the Quran<br />
and Sunna, Salafism is a reformist fundamentalist movement similar to Wahhabism and<br />
Deobandism. However, more emphasis is placed on reconciling Islam and modernity, and<br />
more attention is given to the early community as object of emulation. Al-Afghani and<br />
‘Abduh are also known as nahda (renaissance) intellectuals, as they are considered part<br />
of a larger Arab renaissance that developed in the latter half of the nineteenth century<br />
(1850-1914) and sought to assimilate modern Western achievements.35<br />
As the confrontation with the West intensified, heirs to the Salafi movement were<br />
increasingly concerned with how to restore dignity to Islam, challenged by European<br />
hegemony. With the assault of colonialism and the dissemination of Western culture in<br />
the traditional setting of Islam, Muslim thinkers became conscious of a multitude of<br />
ruptures in society that were political, social, economic, and linguistic.36 Faced with this<br />
religious and intellectual crisis, the thinkers gave birth to an Islamist program that<br />
envisioned a modern political movement, and sought to construct or transform power<br />
relations in society. Islamists saw an all-encompassing role for Islam that addressed<br />
society in its entirety: religion, politics, law, economics, and culture. They entrenched<br />
their ideology in religious terminology, though it was transparently political in nature.<br />
Since there exists no blueprint for, nor consensus on, the modalities of an Islamic<br />
political system within the sacred texts, the Islamist conception could provide the basis<br />
for either a conservative or a liberal form of government.37 The defining characteristics of<br />
Islamism are its political ambitions and its decidedly modern goals and origins.38<br />
(Cambridge: Cambridge University Press, 1970), 3, 4. Charles Wendell details the evolution of the concept<br />
of umma and describes nationalism in those terms—as shift from the umma of the Prophet to the Egyptian<br />
umma, whereby the term remains the same, but the concept changes from a larger Islamic community to a<br />
smaller national community. Wendell, The Evolution of the Egyptian National Image: From its Origins to<br />
Ahmed Lutfi al-Sayyid (Berkeley: University of California Press, 1972).<br />
34 Muhammad ‘Abduh conceived of the Salaf as not only the first generation of the Companions of the<br />
Prophet, but also the accomplishments of the third and fourth generations, according to Nemat Guenena,<br />
The ‘Jihad’: An ‘Islamic Alternative’ in Egypt (Cairo: American University in Cairo Press, 1986), 32.<br />
35 Ibrahim M. Abu-Rabi’, Intellectual Origins of Islamic Resurgence in the Modern Arab World (Albany:<br />
State University of New York Press, 1996), 6.<br />
36 Ibid., 8.<br />
37 For example, see Gudrun Kramer, “Islamist Notions of Democracy,” in Middle East Report<br />
(July/August, 1993), 2-8 for a discussion of Islamic concepts invoked by Islamist activists calling for<br />
pluralist democracy. See also Mumtaz Ahmad, “Parliament, Parties, Polls and Islam: Issues in the Current<br />
Debate on Religion and Politics in Pakistan,” in The American Journal of Islamic Social Sciences, 2/1<br />
(1985), 15-28 for an example of how Islam was used to justify a military dictatorship under Zia ul-Haq.<br />
What is important to glean from these discussions is that Islam is not useful for explaining the existence or<br />
non-existence of democratic forms of government, since Islam details only how an Islamic government<br />
might appear. Rather, it is vital to understanding issues of legitimacy.<br />
38 The origins of the members are modern in that they often come from urban environments and institutions<br />
of modern society, such as secular university faculties of science. The goals of the movement are modern in<br />
that they speak of Islam-as-ideology (not religion), that will compete with modern Western “isms” using<br />
modern technology and social organization.<br />
10<br />
1. The Theoretical Basis of Islamism: Sayyid Qutb and Mawdudi<br />
The Salafi trend in Egypt gave birth to the Muslim Brotherhood, founded by Hasan al-<br />
Banna and transformed by his more radical disciple Sayyid Qutb. The same trend in<br />
Pakistan produced the Jamaat-e Islami, based on the writings of Abu ‘Ala Mawdudi. The<br />
break between the reformist fundamentalism of the Salafi movement and political Islam<br />
or Islamism is encapsulated in the writings of these ideologues. For them, it is a religious<br />
duty to sever with a society in a state of jahiliyya (ignorance of Islam, as in pre-Islamic<br />
times), to establish a party of God, and to install God’s sovereignty (hakimiyyat Allah) by<br />
establishing an Islamic government. Promoting social justice is also an imperative,<br />
beyond ensuring conformity to Shari‘a. As mentioned above, the implementation of the<br />
Shari‘a is not sufficient to qualify a government as Islamic; the head of state, or<br />
Commander of the Faithful, should be chosen according to Islamic precepts, and all<br />
institutions should be Islamic.<br />
The emphasis on the early Muslim community in the writings of Sayyid Qutb is<br />
clear. However, it is important to note that Sayyid Qutb does not assert that the solution<br />
lies in the past, but rather that it is vital to look at the past to understand the issues at<br />
hand.39 He explains that Islam is a practical religion, in that the history of the religion<br />
progressed in stages and that this process can be reconstructed in order to renew society if<br />
it once again falls into a state of jahiliyya.<br />
The requirement of Islamic belief is that it take shape in living souls, in an active<br />
organization, and in a viable community. It should take the form of a movement<br />
struggling against the jahili environment while also trying to remove the influences of<br />
jahili society in its followers, because they were people of Jahiliyya before the faith<br />
entered their soulds, and the influence of Jahiliyya might have remained in their hearts<br />
and minds as well as in their lives. Islamic belief has a much wider range of action than<br />
simply academic discussions, as it not only addresses itself to hearts and minds but also<br />
includes practices and morals&#8230;. From the above explanation we know that this religion<br />
has a particular method of action. Now we ought to know that this method is eternal.40<br />
Jihad is an integral step in this progression. Sayyid Qutb writes:<br />
The causes of Islamic Jihad should be sought in the very nature of Islam and its role in<br />
the world, in its high principles, which have been given to it by God and for the<br />
implementation of which God appointed the Prophet-peace be on him-as His Messenger<br />
and declared him to be the last of all prophets and messengers.<br />
This religion is really a universal declaration of the freedom of man from servitude to<br />
other men and from servitude to his own desires, which is also a form of human<br />
servitude; it is a declaration that sovereignty belongs to God alone and that He is the Lord<br />
of all the worlds. It means a challenge to all kinds and forms of systems which are based<br />
on the concept of the sovereignty of man; in other words, where man has usurped the<br />
Divine attribute. Any system in which the final decisions are referred to human beings,<br />
and in which the sources of all authority are human, deifies human beings by designating<br />
others than God as lords over men. This declaration means that the usurped authority of<br />
39 Abu-Rabi’, The Intellectual Origins of Islamic Resurgence in the Modern Arab World, 111.<br />
40 Sayyid Qutb, Milestones (Cedar Rapids, Ind.: Unity Publishing Company, 1981), 39-40.<br />
11<br />
God be returned to Him and the usurpers be thrown out-those who by themselves devise<br />
laws for others to follow, thus elevating themselves to the status of lords and reducing<br />
others to the status of slaves. In short, to proclaim the authority and sovereignty of God<br />
means to eliminate all human kingship and to announce the rule of the Sustainer of the<br />
universe over the entire earth. 41<br />
He reproves those who would define jihad as defensive:<br />
Anyone who understands this particular character of this religion will also understand the<br />
place of Jihad bis saif (striving through fighting), which is to clear the way for striving<br />
through preaching in the application of the Islamic movement. He will understand that<br />
Islam is not a &#8216;defensive movement&#8217; in the narrow sense which today is technically called<br />
a &#8216;defensive war.&#8217; This narrow meaning is ascribed to it by those who are under the<br />
pressure of circumstances and are defeated by the wily attacks of the orientalists, who<br />
distort the concept of Islamic Jihad. It was a movement to wipe out tyranny and to<br />
introduce true freedom to mankind, using resources according to the actual human<br />
situation, and it had definite stages, for each of which it utilized new methods.<br />
If we insist on calling Islamic Jihad a defensive movement, then we must change the<br />
meaning of the word &#8216;defense&#8217; and mean by it &#8216;the defense of man&#8217; against all those<br />
elements which limit his freedom. These elements take the form of beliefs and concepts,<br />
as well as of political systems, based on economic, racial or class distinctions. When<br />
Islam first came into existence, the world was full of such systems, and the present-day<br />
Jahiliyyah also has various kinds of such systems.42<br />
It is clear that within this definition of jihad, the government (even if it claims to be<br />
Islamic) can become a legitimate target for Islamists as they strive to establish a truly<br />
“Islamic” state. It is unclear here, however, whether or not members of society, who also<br />
live in a state of jahiliyya may be considered “infidels” and also become targets.43 It is on<br />
this point that many Islamist groups have split, since it largely determines their diagnosis<br />
of society and thus their stance on the potential scope for the use of violence.<br />
Mawdudi’s writings resonate with Sayyid Qutb’s view:<br />
You have come to know that the cause of the evils which spread among God&#8217;s servants is<br />
a bad government and that it is necessary for reforming it to set right the root-cause. But<br />
the question now arises as to what is the basic cause of the badness of the government<br />
itself; where is the root of this evil; and what basic reform should be effected in it in order<br />
to wipe out the evils mentioned above? The answer to this question is that the lordship of<br />
man is over man is the root-cause and there is no other method of reform except that<br />
there should be sovereignty of God over man.44<br />
41 Ibid., 57-58.<br />
42 Ibid., 61-62.<br />
43 An infidel is a kafir (pl. kuffar), and proclaiming someone a kafir is called takfir.<br />
44 Sayyid Abu ‘Ala’ Mawdudi, Let us be Muslims, (Leicester: The Islamic Foundation, 2002), on the Web<br />
at http://www.youngmuslims.ca/online_library/books/let_us_be_muslims/ch7top28.html.<br />
12<br />
Like Sayyid Qutb, Mawdudi saw the existing governments as the crux of the problem;<br />
likewise he advocates the total transformation of society beyond the implementation of<br />
the Shari‘a. He sees jihad as the means to remove the servitude of man to other men:<br />
In the eyes of Islam it is certainly not enough for you to believe God as God and His law<br />
as true law. Simultaneous with your faith in these two verities, the duty devolves on you<br />
that wherever you are, in whichever country you live, you must get up there for the<br />
reform of God&#8217;s creation, try to transform the wrong principles of government into<br />
correct principles, snatch away the power of legislation and lordship from those who do<br />
not fear God and are unbridled. And then taking over the leadership and superintendence<br />
of God&#8217;s servants, conduct the affairs of the government in accordance with God&#8217;s laws<br />
and with belief in their responsibility and accountability in the Hereafter as also in God<br />
being the Knower of the unseen. The name of this striving is Jihad.45<br />
The ideology of Sayyid Qutb and Mawdudi is revolutionary in that it seeks to alter the<br />
existing social order and rebuild it in conformity with its own ideals. The revolution<br />
should be launched against existing regimes as well as fiqh, which accommodates the<br />
present society. True believers should join together under the authority of a ruler (amir)<br />
in forming a counter-society, a vanguard of the faithful, reflecting what the whole umma<br />
should one day be.46<br />
2. Islamism in Egypt and Pakistan<br />
Both Egypt and (what later came to be) Pakistan were intensely exposed to Western<br />
influences prior to the emergence of Islamism there. Both adopted Western patterns of<br />
political, legal, social, and economic development, as they each had long and complicated<br />
relationships with the West. Egypt, though never officially a colony, was occupied by<br />
British forces as early as 1882, and was exposed to the French presence from 1798 with<br />
Napoleon’s invasion. Until partition in 1947, Pakistan was part of British India, where<br />
British presence dates back to the early seventeenth century.<br />
Inasmuch as Islamism was a response to the cultural crisis caused by exposure to<br />
the West, it was also a response to the crisis of nationalism. In Egypt, the defeat of the<br />
Arabs in the Six Day War of June 1967 at the hands of Israel represented a blow to the<br />
socialist Arab nationalism espoused by Gamal Abd al-Nasser, who had led the Egyptian<br />
coup to overthrow the Western-leaning monarchy. In Pakistan, after Islam had provided<br />
the raison d’être for the new nation, serious questions arose as to what role Islam would<br />
play in informing the ideology and institutions of the state otherwise segmented along<br />
regional, linguistic, and ethnic lines. The ruling establishment in Pakistan in the 1970s<br />
consisted of the socialist Pakistan People’s Party (PPP). The writings of Sayyid Qutb and<br />
Mawdudi proposed Islam as the cultural, social, and political standard in response to<br />
these socialist nationalist projects. Though the Islamist rhetoric indicated that nationalism<br />
was incompatible with Islam, recalling the pan-Islamism of al-Afghani, pan-Islamist<br />
aspirations quickly gave way to political reality. It became clear that they did not oppose<br />
nationalism itself, but rather a secular nationalism. Mawdudi declared,<br />
45 Ibid.<br />
46 Roy, From Holy War to Civil War, 35.<br />
13<br />
…it is natural for me to wish and pray that my nation should have the proud privilege of<br />
leading the Islamic revolution in the present age, of being the first of the nations to adopt<br />
Islam in its totality, and to set up a model Islamic society which should serve as an<br />
example and a beacon for the rest of mankind.47<br />
Hence, Pakistani Islamists pushed forth an Islamic nationalism, in hopes that other<br />
nations would follow suit.<br />
The Muslim Brotherhood in Egypt developed into a mass movement that enjoyed<br />
the support of urban youth from educated and deprived backgrounds, as well as the<br />
devout middle class, excluded from political power. Although the two groups were<br />
committed to the idea of an Islamic state, they differed as to how that state might<br />
materialize. The former, which developed into student groups that made up the Gama‘at<br />
Islamiyya, was more inclined to view the process in social-revolutionary terms,<br />
promoting radical readings of Sayyid Qutb, while the latter saw a power struggle between<br />
themselves and incumbent elites that would not completely overturn the existing social<br />
structure. The Brotherhood successfully won the broadest base of support when they<br />
couched their political ideology in Islamic terms and emphasized morality, without<br />
offering a detailed social agenda. For its part, the regime tried to woo the devout<br />
bourgeoisie. This effort is epitomized in President Anwar Sadat’s infitah, or economic<br />
opening, that sought to win the support of more moderate elements of the Muslim<br />
Brotherhood by offering the opportunities in a newly privatized economy.48 When a<br />
coalition of the two groups collapsed, radical and moderate elements canceled each other<br />
out and Islamists failed to seize power.49<br />
In Egypt, acts of violence by more radical Islamists allowed the state to discredit<br />
the Islamist movement as a whole. Especially horrific were terrorists acts committed by<br />
a group of Gama‘at members arrested in the Nasser era, who, once released, formed the<br />
splinter groups al-Takfir wa-l-Hijra and Islamic Jihad. The former kidnapped and<br />
murdered a religious cleric, and the latter claimed responsibility for the assassination of<br />
President Sadat.50 Takfir wa-l-Hijra, as its name suggests, took Sayyid Qutb’s theory to<br />
its limit, and included civilian members of society as kuffar (infidels), and thus legitimate<br />
targets. Members of the devout bourgeoisie were thus shocked into joining the ruling<br />
faction, even as they were enticed with a minimal Islamization program or economic<br />
benefits. The violence allowed the Egyptian regime to instigate a campaign of repression<br />
against the entire movement.<br />
In Pakistan, the more gradual approach of Mawdudi (when compared to Sayyid<br />
Qutb) found favor with the educated middle classes; it did not garner as much support<br />
among the masses as did Sayyid Qutb and the Muslim Brotherhood in Egypt.51 However,<br />
Jamaat-e Islami did have an associated youth branch, the Islami Jamiat-i Tulaba (IJT),<br />
which constituted an important force. As in Egypt, it included the more radical elements<br />
of the movement, and the group took recourse to violence on university campuses.52 The<br />
47 As quoted in Grare, Political Islam in the Indian Subcontinent, 24.<br />
48 Kepel, Jihad, 83.<br />
49 Ibid., 67.<br />
50 David Zeidan, “Radical Islam in Egypt,” in Revolutionaries and Reformers: Contemporary Islamist<br />
Movements in the Middle East, ed. Barry Rubin (Albany: State Univeristy of New York Press, 2003), 13.<br />
51 Kepel, Jihad, 24.<br />
52 Grare, Political Islam on the Indian Subcontinent, 34, 37.<br />
14<br />
PPP under Zulfiqar Ali Bhutto tried to reduce the influence of Islamists by embarking on<br />
a campaign of Islamization, and founded a newspaper called Musawat that provided a<br />
mouthpiece for the Islamic justification of the PPP’s policies. Nasser had established the<br />
paper Minbar al-Islam in Egypt for a similar purpose.53 The Jamaat-e Islami, unlike the<br />
Muslim Brotherhood, was able to withstand government measures to diminish its<br />
influence. In the late 1970s, to stabilize his dictatorship, Zia ul-Haq promoted Islamism to<br />
the status of state ideology. Thus, Islamists and members of the devout bourgeoisie were<br />
successfully co-opted by the ruling camp, and were less tempted to ally with the more<br />
radicalized youth.54 By 1984, the government outlawed all student unions, the IJT being<br />
the most powerful among them, and brutally repressed remnants of IJT resistance.55<br />
The Islamist movements in these two countries both failed to secure control of the<br />
state for similar reasons. The coalition formed by Islamist intellectuals of the devout<br />
bourgeoisie and the urban youth disintegrated as the ruling camp was able to woo the<br />
middle-class elements. Realizing their predicament, the more restive factions radicalized,<br />
and increasingly employed violence. This violence enabled the regimes to repress these<br />
elements or even discredit the movement as a whole. It is noteworthy that the only<br />
successful Islamist project to date, that of the Iranian revolution, was able to build on and<br />
maintain this broad-based coalition, essential to capturing control of the state.<br />
AFGHAN CONTEXT<br />
1. The Birth of the Islamist Movement in Afghanistan<br />
The Islamist movement in Afghanistan emerged in the late 1950s in the intellectual<br />
setting of Kabul University. It was initially supported by Dr. Gholam Mohammad Niazi,<br />
Dean of the Faculty of Religious Sciences, after his return from Egypt.56 It is noteworthy<br />
that the Islamist movement in Afghanistan took its inspiration from the Muslim<br />
Brotherhood in Egypt,57 more so than from Islamists in Pakistan, though their influence<br />
can also be detected. This is largely because many of the professors who started the<br />
movement in Afghanistan, like Niazi, were educated in Egypt.<br />
A group of “professors,” led by Burhanuddin Rabbani, called the movement<br />
Jamiat-e Islami (not to be confused with the Pakistani Jamaat-e Islami), and focused on<br />
cultural activity within the student body. They began translating the works of foreign<br />
Islamists and introducing political Islam as a modern ideology. These included Sayyid<br />
Qutb’s Islam and Social Justice, Milestones, and parts of his In the Shade of the Quran.58<br />
Mawdudi’s works were also widely read, but his influence increased only after a number<br />
of Afghan Islamists went into exile in Pakistan in the late 1970s.59<br />
From 1965-1972, the university campus was the scene of ardent political<br />
activism. It is noteworthy that the communist party in Afghanistan was founded in 1965<br />
53 John Esposito, “Islam: Ideology and Politics in Pakistan,” in The State, Religion and Ethnic Politics in<br />
Afghanistan, Iran and Pakistan, eds. Ali Banuazizi and Myron Weiner, 340.<br />
54 Kepel, Jihad, 101<br />
55 Grare, Political Islam on the Indian Subcontinent, 40, 41.<br />
56 Olivier Roy, “The Origins of the Islamist Movement in Afghanistan” in Central Asian Survey 3(2)<br />
(1984), 117.<br />
57 Roy, Islam and Resistance, 69.<br />
58 Ibid., 70.<br />
59 Olesen, Islam and Politics in Afghanistan, 229.<br />
15<br />
after the liberalization that followed the promulgation of the 1964 constitution. During<br />
this time, a more radical student branch of the Islamist movement developed and became<br />
increasingly active. This movement, called Sazman-i Jawanan-i Musulman (Organization<br />
of Muslim Youth), led by Gulbuddin Hekmatyar (a student of engineering), demonstrated<br />
frequently, primarily in opposition to the establishment in Afghanistan, targeting King<br />
Zahir Shah and his cousin Prime Minister Daoud, and protesting the allowance of foreign<br />
influence into the affairs of Afghanistan.60 They aggressively opposed the communists,<br />
who outnumbered Islamists on campus until 1970, when the latter won a majority in the<br />
student elections.61<br />
In 1975, members of the Organization of Muslim Youth attempted to organize a<br />
popular uprising against the regime, but instead, the poorly coordinated movement only<br />
resulted in government repression.62 Different outlooks on strategy led to a clash between<br />
the Jamiat-e Islami represented by the “professors” and the Muslim Youth. After the<br />
failed uprising, surviving elements of the Islamists movement went into exile in<br />
Peshawar.<br />
2. Constraints on the Growth of Afghan Islamism<br />
As mentioned above, the confrontation with the West through colonial projects in the<br />
Muslim world more than anything generated the environment from which Islamism<br />
emerged. Afghanistan, itself never a colony or protectorate, was not subject to as intense<br />
an interaction with the Western world as Egypt or Pakistan. Until the Soviet invasion in<br />
1979, Islam in Afghanistan was not felt to be threatened from the outside.63 This denotes<br />
the key difference between the Islamist movement in Afghanistan and elsewhere in the<br />
Muslim world. It is for this reason that we see a burgeoning Islamist movement coming<br />
out of a limited space where Westernization was most pervasive: Kabul University. And<br />
here, Islamist recruits, like their counterparts elsewhere in the Muslim world, came<br />
primarily from the governmental educational system.64<br />
Moreover, this more isolated theater of East versus West confrontation also<br />
explains why in Afghanistan Islamism did not develop the mass support base that we see<br />
in Egypt, for example. In Afghanistan, where the domestic confrontation between the<br />
capital and the countryside has been the over-arching theme in history, the population has<br />
been more concerned with resisting the state than foreign ideologies. Asta Olesen, in<br />
Islam and Politics in Afghanistan, explains,<br />
In Afghanistan, where the social and economic development was considably slower than<br />
in the neighboring countries and the cultural polarization thus less pronounced, the<br />
Islamic revival movement was felt among the small group of educated young, rather than<br />
in the population at large. Since the revival largely affected the educated middle class,<br />
there was a comparatively close correspondence between revival as a socialpsychological<br />
phenomenon and the spreading of the religio-political ideology of what<br />
came to be known as the ‘Islamism.’65<br />
60 Roy, Islam and Resistance, 71.<br />
61 Roy, “The Origins of the Islamist Movement in Afghanistan,” 119.<br />
62 Roy, Islam and Resistance, 75.<br />
63 Naby, “The Changing Role of Islam as a Unifying Force,” 127.<br />
64 Roy, Islam and Resistance, 69.<br />
65 Olesen, Islam and Politics in Afghanistan, 227, 228.<br />
16<br />
Moreover, Afghans who saw themselves as exemplary Muslims, unaffected by corruptive<br />
Westernization, would hardly respond to calls for re-Islamization.66<br />
From the late 1950s, then, the Islamist movement was unable to mobilize any<br />
noteworthy popular support. The large numbers of poor urban youth were missing from<br />
this Islamist equation. Afghanistan did not experience the massive demographic changes<br />
occurring elsewhere in the Muslim world. There had been no massive rural-to-urban<br />
migration in the preceding years. On the university campus, however, a small group of<br />
Islamists daily mixed with communists, to whom they were fiercely opposed. Islam,<br />
through the formulation of Islamism, became the ideological antidote to communism.<br />
Just before the invasion of the Soviets, however, the population at large became<br />
increasingly agitated by the pervasive reforms initiated by the Marxist government in<br />
1978. For the first time, the rural areas that comprised the majority of the Afghan<br />
population were challenged by foreign ideas. As anthropologist Jon Anderson explains,<br />
What convulsed the population were the heavy doses of Marxist propaganda combined<br />
with abrupt, confused and arbitrary attempts of newly posted, inexperienced officials to<br />
impose such changes. The irrelevance of Marxist class theory to the essentially<br />
segmentary character of Afghan society aside, the peasants and the nomads reacted to<br />
what they saw as interference in religious and social matter, not improvements, in the<br />
fiats declared by the new regime.67<br />
Direct confrontation with rural sensitivities resulted in a revolt, first in Nuristan, followed<br />
by Uzbek, Tajik, and Pashtun areas of Afghanistan. This uprising prompted the invasion<br />
of the Soviets in December of 1979.<br />
The watershed moment for Islamists was the Soviet invasion. Islamists, in exile in<br />
Pakistan since 1975, provided ready-made jihad groups (mujahiddin) to channel the<br />
resistance. The call for jihad played the key role in marshalling support for the Islamists.<br />
Absent such a confrontation, it is unlikely that the Islamist movement would have been<br />
able to influence Afghan society at large.<br />
3. Importance of Traditional Social Structure and Tribal Identities<br />
As discussed above, Afghanistan is a highly segmented society, divided along ethnic and<br />
tribal lines. At the same time, Afghanistan is a society composed almost exclusively of<br />
Muslims. Afghans of all ethnicities recognize the need to defend the community of<br />
believers against the infidel. When jihad is invoked to confront the threat, it brings an<br />
increased authority to religious figures, at the expense of the khan, the traditional rural<br />
community leader and landowner whose authority is secular. In terms of Muslim<br />
solidarity versus tribal solidarity, it is better for the khan to come to an agreement with an<br />
enemy who will recognize his local standing, rather than win the jihad and lose his<br />
identity within the tribe. This explains the absence of a khan at the head of any<br />
mujahiddin group. Historically, an external threat gives Islam its power over tribal<br />
solidarity, but the traditional society and its leadership re-emerges.68 It is a process that<br />
66 Anderson, “How Afghans Define Their Relation to Islam,” 266-287.<br />
67 Naby, “The Changing role of Islam as a Unifying Force,” 117, 118.<br />
68 Roy, Islam and Resistance, 60-62.<br />
17<br />
has repeated itself time and again—traditional structures are for a time subordinated to<br />
functions of religion, and then resume their rightful order.<br />
Defensive jihad is a familiar theme in Afghanistan. However, as mentioned<br />
above, Islamists have aspired to reinstate the notion of offensive jihad as a political<br />
strategy. Despite the fact that Islamists invoked Islamic terms at every stage of the<br />
Afghan jihad, popular discourse demonstrated the enduring elements of tribal identity for<br />
many. For example, while Islamists referred to exile as hijra, recalling the experience of<br />
the Prophet as he emigrated from Mecca to Medina to consolidate the community, many<br />
tribal elements conceived of their stay in Pakistan in terms of such tribal concepts as<br />
milmastiya (hospitality), nanawatia (refuge) or panah (asylum), obligations they imposed<br />
on their tribal brothers.69 Islamists can draw upon tribal identity inasmuch as it overlaps<br />
with religious identity, but there are elements of the tribal structure and identity that<br />
continuously provide a source of tension.<br />
The nature of the relationship between Islamists and the ‘ulama during the jihad is<br />
not obvious or automatic. On the one hand, one would expect the relationship between<br />
Islamists and the ‘ulama to be one of cooperation. After all, the ‘ulama also support the<br />
implementation of the Shari‘a, and they are not competitors for political power. An<br />
alliance with the ‘ulama could only help Islamists in their drive for power. This was the<br />
attitude taken by some Islamists, especially those who comprised the Jamiat under<br />
Rabbani. However, Hekmatyar’s group of Muslim Youth did not share this outlook. For<br />
the increasingly revolutionary Islamists, the ‘ulama were too close to the establishment.<br />
Moreover, the ‘ulama had their own views of the Islamists. In some cases, the ‘ulama<br />
were amenable to membership in the Jamiat and the Muslim Youth (though<br />
understandably less often). However, for the most part, the ‘ulama were distressed at the<br />
increasing radicalism of the Islamist movement and kept their distance.<br />
As for the Afghan Sufis, those for whom the Deoband school influence was<br />
strongest were, not surprisingly, most open to the Islamist platform. These included the<br />
Naqshbandi pir of the Kabul region, where many Naqshbandis were members of the<br />
Islamist movement. The Islamists’ attitude toward Sufis varied: For the most part, they<br />
condemned Sufism as a misrepresentation of Islam, but some were more symphathetic,<br />
paying homage to past pirs, while condemning the current generation.70<br />
*<br />
While the traditional structures of Afghan society and conceptions of identity outside of<br />
Islam have not been entirely decimated, it is clear that the jihad against the Soviets drove<br />
many Afghans into refugee camps, where they became a potential recruitment pool which<br />
probably would not have been available otherwise. Islamists provided a vehicle for<br />
resistance against a foreign invader, as well as an education to a refugee population in<br />
madrasas that served to narrate their pre-packaged ideology. Moreover, many refugees<br />
were not only exposed to, but also raised in an increasingly Islamized Pakistan under Zia<br />
ul-Haq. Undoubtedly, political expectations of a younger generation of Afghans have<br />
been altered by the exposure to this model. Overall, the Afghan jihad destroyed pre-war<br />
69 Olesen, Islam and Politics in Afghanistan, 278.<br />
70 Ibid., 249, 250.<br />
18<br />
elites and led to the development of new political elites founded on a prominent role for<br />
young people and Islamist ideologues.71<br />
After the Soviets withdrew from Aghanistan, the mujahiddin attempted to form an<br />
Islamic state under Rabbani. However, intense internecine fighting between 1992 and<br />
1995 severely damaged their aspirations for an Islamic state.72 While this failure might<br />
indicate that the idea of an Islamic state has been discredited altogether, we must<br />
remember that the Islamic state under Rabbani was unable to implement any Islamist<br />
policy in the face of military opposition from his rival, Hekmatyar.<br />
Moreover, it was this intense infighting that resulted in the rise of the Taliban,<br />
who were welcomed by the majority of Afghans, weary of disorder and violence. The<br />
prolonged war, continuing long after the Soviet withdrawal, maintained the new elites<br />
that had developed as a result of the jihad. It is clear that the recruitment source of the<br />
Taliban were those many young Afghans, born in Pakistan, who had attended the<br />
Deobandi madrasas run by Pakistan’s Islamists, the Jamaat-e-Ulema Islam (JUI).73<br />
Many scholars agree that much about the Taliban remains a mystery. Although<br />
their goals are perhaps still unclear, the Taliban formed a movement motivated by Islam<br />
and their desire to unify and purify Afghanistan. It is important to note here that the<br />
Islamists and the Taliban differ in important ways. The Islamists were closer to the<br />
Marxists than the Taliban in that they developed (or borrowed) an all-inclusive ideology<br />
and sought to impose radical change on the traditional social structure through revolution<br />
from the top. The Taliban, on the other hand, set out as a pure reformist movement, not<br />
echoing Islamists, Sufis, or traditionalists. They have in common that both were<br />
unwilling to accept the realities on the ground, which led to their failure.<br />
Many have pointed out that the Deobandi background of the Taliban provided the<br />
basis for their ideas. It can be said that they represented an extreme form of Deobandism,<br />
sometimes called neo-Deobandism, preached by Pakistani Islamic parties in Afghan<br />
refugee camps. The JUI, headed by Maulana Fazlur Rehman, was instrumental in<br />
establishing hundreds of Deobandi madrasas in the North-West Frontier Province, as well<br />
as in Baluchistan. Mullas who taught at these schools were far removed from the original<br />
Deobandi reformist agenda, however. Their interpretation of the Shari‘a, which many<br />
characterize as very strict, was actually heavily influenced by the tribal code of the<br />
Pashtuns. However, like the Deobandis, the Taliban opposed the tribal and feudal<br />
structure, and did not allow traditional tribal chiefs in leadership positions. These neo-<br />
Deobandi Taliban were also more sympathetic to the Wahhabi creed.74 They enforced a<br />
restricted role for women (Islamists favored the education of women and their<br />
participation in social life), rejected Sufism, and were vehemently anti-Shi‘i. The Taliban<br />
are opposed to modernism, which even the most radical Islamists adopt. From what is<br />
known, they governed without reference to any scholarship on Islamic or Afghan history<br />
and can be said to have lacked a sense of history. Islamists on the other hand include<br />
themselves in a long historical tradition of debate and scholarly thought. Though no<br />
71 Larry Goodson, Afghanistan’s Endless War: State Failure, Regional Politics, and the Rise of the Taliban<br />
(Seattle: University of Washington Press, 2001), PAGES.<br />
72 Roy, “Has Islamism a Future in Afghanistan?” in Fundamentalism Reborn: Afghanistan and the Taliban,<br />
ed. William Maley (New York: New York University Press, 1998), 207.<br />
73 Rashid, Taliban, 26.<br />
74 Rashid, Taliban, 86-90.<br />
19<br />
Afghan theorist rose to prominence, Afghan Islamists wrote their own commentaries in<br />
the same vein as their Egyptian and Pakistani mentors.<br />
Today, despite the violence of the experiences of the Islamic governments of<br />
Rabbani and the Taliban, one cannot ignore the fact that Afghan society has become<br />
more Islamized, or rather more politically Islamized after these experiences. The<br />
traditional structures of power have been severely damaged by a quarter-century of war,<br />
and the new generation has no memory of the old structure to which the society<br />
historically reverted after facing an external threat. In particular, the khan class, which<br />
was the paternalistic authority upon with the central government depended, has been<br />
destroyed. Moreover, the intense exposure to fundamentalist Islam as ideology (as well as<br />
to the Taliban) has resulted in the decline of the influence of Sufism, traditionally a<br />
moderating force that emphasizes the greater jihad, or spiritual striving, in favor of the<br />
lesser jihad, or striving through fighting.75<br />
History shows that Islamists succeed only when they can successfully garner a<br />
broad base of popular support. The Islamists are still powerful players in Afghanistan,<br />
and it remains to be seen whether or not the powers-that-be can reign them in by<br />
sufficiently Islamizing institutions while maintaining a largely secular government, as is<br />
so far the case in Egypt and Pakistan. As has been shown, Islamists successfully won the<br />
broadest base of support when they couched their ideology in Islamic terms and<br />
emphasized morality, without offering a detailed social agenda. Afghan Islamists are<br />
currently forming alliances that suggest such ambiguity. It remains to be seen whether or<br />
not these appeals to morality will be sufficient to win the combined support of the<br />
urbanized youth and the middle-class that will re-emerge in Afghanistan.<br />
75 Olesen, Islam and Politics in Afghanistan, 250.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=86&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/09/islam-and-islamism-in-afghanistan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>The Meaning of Islam</title>
		<link>http://avaricesoft.wordpress.com/2009/06/08/the-meaning-of-islam/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/08/the-meaning-of-islam/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 19:46:38 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=83</guid>
		<description><![CDATA[The Meaning of Islam
ISLAM is derived from the Arabic root &#8220;SALEMA&#8221;: peace, purity, submission and obedience. In the religious sense, Islam means submission to the will of God and obedience to His law.
Everything and every phenomenon in the world, other than man is administered TOTALLY by God-made laws i.e. they are obedient to God and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=83&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>The Meaning of Islam</strong></p>
<p>ISLAM is derived from the Arabic root &#8220;SALEMA&#8221;: peace, purity, submission and obedience. In the religious sense, Islam means submission to the will of God and obedience to His law.</p>
<p>Everything and every phenomenon in the world, other than man is administered TOTALLY by God-made laws i.e. they are obedient to God and submissive to His laws i.e. they are in the STATE OF ISLAM. Man possesses the quality of intelligence and choice, thus he is invited to submit to the good will of God and obey His law ie. become a Muslim. Submission to the good will of God, together with obedience to His beneficial law, i.e. becoming a Muslim is the best safeguard for man&#8217;s peace and harmony.</p>
<p>Islam dates back to the edge of Adam and its message has been conveyed to man by God&#8217;s Prophets and Messengers including Abrahim, Moses, Jesus and Muhammad. Islam&#8217;s message has been restored and enforced in the last stage of the religious evolution by God&#8217;s last Prophet and Messenger Muhammad.</p>
<p>The word Allah in the Arabic language means God, or more accurately The One and Only Eternal God, Creator of theUniverse, Lord of all lords, King of all kings, MostCompassionate, Most Merciful. The word Allah to mean God is also used by Arabic speaking Jews and Christians.</p>
<p>Articles of Faith</p>
<p>Allah, the One and Only God</p>
<p>A muslim believes in ONE GOD, Supreme and Eternal, Infinite and Mighty, Merciful and Compassionate, Creator and Provider. God has no father nor mother, no sons nor was He fathered. None equal to Him. He is God of all mankind, not of a special tribe or race.</p>
<p>God is High and Supreme but He is very near to the pious thoughtful believers; He answers their prayers and help them. He loves the people who love Him and forgives their sins. He gives them peace, happiness, knowledge and success. God is the Loving and the Provider, the Generous, and the Benevolent, the Rich and the Independent the Forgiving and the Clement, the Patient and the Appreciative, the Unique and the Protector, the Judge and the Peace. God&#8217;s attributes are mentioned in the Quran.</p>
<p>God creates in man the mind to understand, the soul and conscience to be good and righteous, the feelings and sentiments to be kind and humane. If we try to count His favours upon us, we cannot, because they are countless. In return for all the great favours and mercy, God does not need anything from us, because He is Needless and Independent. God asks us to know Him, to love Him and to enforce His law for our benefit and our own benefit and our own good.</p>
<p>Messengers and Prophets of God</p>
<p>A Muslim believes in all the Messengers and Prophets of God without any discrimination. All messengers were mortals, human beings, endowed with Divine revelations and appointed by God to teach mankind. The Holy Quran mentions the names of 25 messengers and prophets and states that there are others. These include Noah, Abrahim, Ishmael, Isaac, Moses, Jesus and Muhammad. Their message is the same and it is Islam and it came from One and the Same Source; God, and it is to submit to His will and to obey His law; i.e., to become a Muslim.</p>
<p>Revelations and the Quran</p>
<p>A Muslim believes in all scriptures and revelations of God, as they were complete and in their original versions. Allah, the Creator, has not left man without guidance for the conduct of his life. Revelations were given to guide the people to the right path of Allah and sent down to selected people, the prophet and messengers, to convey it to their fellow men.</p>
<p>The message of all the prophet and messengers is the same. They all asked the people of their time to obey and worship Allah and none other. Abrahim, Moses, David, Jesus and Muhammad who were revealed their own book of Allah, were sent at different times to bring back straying human being from deviation to Right Course.</p>
<p>The Quran is the sacred book of the Muslims. It is the last book of guidance from Allah, sent down to Muhammad, peace be upon him, through the angel Jibraeel (Gabriel). Every word of it is the word of Allah. It was revealed over a period of 23 years in the Arabic language. It contains 114 Surahs (chapters) and over 6000 verses.</p>
<p>The Quran deals with man and his ultimate goal in life. Its teachings cover all areas of this life and the life after death. It contains principles, doctrines and directions for every sphere of human life. The theme of the Quran broadly consists of three fundamental ideas: Oneness of Allah, Prophethood and life after death. The success of human beings on this earth and in the life hereafter depends on obedience to the Quranic teaching.</p>
<p>The Quran is unrivalled in its recording and prservation. The astonishing fact about this book of Allah is that it has remained unchanged even to a dot over the past fourteen hundred years. No scholar has questioned the fact that the Quran today is the same as it was revealed. Muslims till today memorize the Quran word by word as a whole or in part. Today, the Quran is the only authentic and complete book of Allah. Allah is protecting it from being lost, corrupted or concealed.</p>
<p>The Angels of Allah</p>
<p>There are purely spiritual and splendid beings created by Allah. They require no food or drink or sleep. They have no physical desires nor material needs. Angels spend their time in the service of Allah. Each charged with a certain duty. Angels cannot be seen by the naked eyes. Knowledge and the truth are not entirely confined to sensory knowledge or sensory perception alone.</p>
<p>The Day of Judgement</p>
<p>A Muslim believes in the Day of the Judgement. This world as we know it will come to an end and the dead will rise to stand for their final and fair trial. On that day, all men and women from Adam to the last person will be resurrected from the state of death for judgement. Everything we do, say, make, intend and think are accounted for and kept in accurate records. They are brought up on the Day of Judgement. One who believe in life after death is not expected to behave against the Will of Allah. He will always bear in mind that Allah is watching all his actions and the angels are recording them.</p>
<p>People with good records will be generously rewarded and warmly welcomed to Allah&#8217;s Heaven. People with bad records will be fairly punished and cast into Hell. The real nature of Heaven and Hell are known to Allah only, but they are described by Allah in man&#8217;s familiar terms in the Quran.</p>
<p>If some good deeds are seen not to get full appreciation and credit in this life, they will receive full compensation and be widely acknowledged on the Day of Judgement. If some people who commit sins, neglect Allah and indulge in immoral activities, seem SUPERFICIALLY successful and prosperous in this life, absolute justice will be done to them on the Day of Judgement. The time of the Day of Judgement is only known to Allah and Allah alone.</p>
<p>Qadaa and Qadar</p>
<p>A Muslim believes in Qadaa and Qadar which related to the ultimate power of Allah. Qadaa and Qadar means the Timeless Knowledge of Allah and His power to plan and execute His plans. Allah is not indifferent to this world nor is He neutral to it. It implies that everything on this earth originates from the one and only creator who is also the Sustainer and the sole source of guidance.</p>
<p>Allah is Wise, Just and Loving and whatever He does must have a good motive, although we may fail sometimes to understand it fully. We should have strong faith in Allah and accept whatever He does because our knowledge is limited and our thinking is based on individual consideration, whereas His knowledge is limitless and He plans on a universal basis. Man should think, plan and make sound choice, but if things do not happen the way he wants, he should not lose faith and surrender himself to mental strains or shattering worries.</p>
<p>The Purpose of Life</p>
<p>A Muslim believe that the purpose of life is to worship Allah. Worshipping Allah does not mean we spend our entire lives in constant seclusion and absolute meditation. To worship Allah is to live life according to His commands, not to run away from it. To worship Allah is to know Him, to love Him, to obey His commands, to enforce His laws in every aspect of life, to serve His cause by doing right and shunning evil and to be just to Him, to ourselves and to our fellow human beings.</p>
<p>Status of Human Being</p>
<p>A Muslim believes that human being enjoys an especially high ranking status in the hierarchy of all known creatures. Man occupies this distinguished position because he alone is gifted with rational faculties and spiritual aspirations as well as powers of action. Man is not a condemned race from birth to death, but a dignified being potentially capable of good and noble achievements. A Muslim also believes that every person is born muslim. Every person is endowed by Allah with spiritual potential and intellectual inclination that can make him a good Muslim. Every person&#8217;s birth takes place according to the will of Allah in realization of His plans and in submission to His commands. Every person is born FREE FROM SIN. When the person reaches the age of maturity and if he is sane, he become accountable for all his deeds and intentions. Man is free from sin until he commits sin. There is no inherited sin, no original sin. Adam committed the first sin, he prayed to Allah for pardon and Allah granted Adam pardon.</p>
<p>Salvation</p>
<p>A Muslim believes that man must work out his salvation through the guidance of Allah. No one can act on behalf of another or intercede between him and Allah. In order to obtain salvation, a person must combine faith and action, belief and practice. Faith without doing good deeds is as insufficient as doing good deeds without faith. Also, a Muslim believes that Allah does not hold any person responsible until he has shown him the Right Way. If people do not know and have no way of knowing about Islam, they will not be responsible for failing to be Muslim. Every Muslim must preach Islam in words and action.</p>
<p>Acceptance of Faith</p>
<p>A Muslim believes that faith is not complete when it is followed blindly or accepted unquestioningly. Man must build his faith on well-grounded convictions beyond any reasonable doubt and above uncertainty. Islam insures freedom to believe and forbids compulsion in religion (one of the oldest synagogues and one of the oldest churches in the worlds is in Muslim countries).</p>
<p>A Muslim believes that the Quran is the word of Allah revealed to prophet Muhammad through the Angel Gabriel. The Quran was revealed from revealed from</p>
<p>Allah on various occasions to answer questions, solve problems, settle dbe man&#8217;s best guide to the truth. The Quran was revealed in Arabic and it is still in its original and complete Arabic version until today. It is memorized by millions. A Muslim also believes in a clear distinction between the Quran and the Traditions (called Hadits) of the Prophet Muhammad. Whereas, the Quran is the word of Allah, the Traditions of Prophet Muhammad (hadits i.e.: his teachings, sayings, and actions) are the practical interpretations of the Quran. Both the Quran and the Hadits of Prophet Muhammad are the primary sources of knowledge in Islam.</p>
<p>Application of Faith</p>
<p>God has laid down for a Muslim four major exercises of faith, some are daily, some weekly, some monthly, some annually and some are required as a minimum of once in a lifetime. These exercises of faith are to serve man&#8217;s spiritual purposes, satisfy his human needs and to mark his whole life with a Divine touch. These major exercises of faith are:</p>
<p>Prayer (Salah)</p>
<p>Praying, to the Creator on a daily basis, is the best way to cultivate in a man a sound personality and to actualize his aspiration. Allah does not need man&#8217;s prayer because He is free of all needs. Salah is for our benefit which are immeasurable and the blessings are beyond imagination.</p>
<p>In salah, every muscle of the body joins the soul and the mind in the worship and glory of Allah. Salah is an act of worship. It is a matchless and unprecedented formula of intellectual meditation and spiritual devotion, of moral elevation and physical exercise, all combined.</p>
<p>Offering of salah is obligatory upon every Muslim male and female who is sane, mature and in case of women free from menstruation and confinement due to child birth. Requirements of salah: performing of ablution (Wudu), purity of the whole body, clothes and ground used for prayer, dressing properly and having (or declaring) the intention and facing the Qiblah; the direction of the Ka&#8217;bah at Mecca.</p>
<p>Obligatory Salah: Five daily salahs, the Friday&#8217;s noon congregation salah and the funeral salah.</p>
<p>Highly recommended salah: Those accompanying the obligatory salah and the two great festival salahs.</p>
<p>Optional salah: Voluntary salah during the day and night.</p>
<p>Times of Obligatory Salah:</p>
<p>1. Early Morning &#8211; after dawn and before sunrise.</p>
<p>2. Noon &#8211; after the sun begins to decline from its zenith until it is about midway on its course to set.</p>
<p>3. Mid-afternoon &#8211; after the expiration of the noon salah time until sunset.</p>
<p>4. Sunset &#8211; immediately after sunset until the red glow in the western horizon disappears.</p>
<p>5. Evening &#8211; after the expiration of the sunset salah until dawn. Salah should be offered in its due time, unless there is a reasonable excuse. Delayed obligatory salah must be made up. In addition to the prescribed salah, a Muslim expressed gratitude to God and appreciation of His favours and asks for His mercy all the time. Especially at times of, for example: childbirth, marriage, going to or rising from bed, leaving and returning to his home, starting a journey or entering a city, riding or driving, before or after eating or drinking, harvesting, visiting graveyards and at time of distress and sickness.</p>
<p>Fasting</p>
<p>Fasting is abstaining completely from eating, drinking, intimate sexual contacts and smoking from the break of dawn till sunset. It is a matchless Islamic institution which teaches man the principle of sincere love to God. Fasting teaches man a creative sense of hope, devotion, patience, unselfishness, moderation, willpower, wise saving, sound budgeting, mature adaptability, healthy survival, discipline, spirit of social belonging, unity and brotherhood. Obligatory fasting is done once a year for the period of the month of Ramadan; the ninth month of the Islamic year. Recommended fasting every Monday and Thursday of every week, three days in the middle of each Islamic month, six days after Ramadan following the Feast Day and a few days of the two months before Ramadan. Fasting of Ramadan is a worship act which is obligatory on every adult Muslim, male or female if he/she mentally and physically fit and not on a journey. Exception: women during their period of menstruation and while nursing their child and also in case of travel and sickness.</p>
<p>Charity Giving (Zakah)</p>
<p>Charity giving is an act of worship and spiritual investment. The lateral meaning of Zakah is purity and it refers to the annual amount in kind or coin which a Muslim with means must distribute among the rightful beneficiaries. Zakah does not only purifies the property of the contributor but also purifies his heart from selfishness and greed. It also purifies the heart of the recipient from envy and jealousy, from hatred and uneasiness and it fosters instead good-will and warm wishes for the contributors.</p>
<p>Zakah has a deep humanitarian and social-political value; for example, it frees society from class welfare, from ill feelings and distrust and from corruption. Although Islam does not hinder private enterprise or condemn private possession, it does not tolerate selfish and greedy capitalism. Islam adopts a moderate but positive and effective course between individual and society, between the citizen and the state, between capitalism and socialism, between materialism and spiritualism. Zakah is paid on the net balance after paying personal expenses, family expenses, due credits, taxes, etc. Every Muslim, male or female who at the end of the year is in possession of the equivalent of 85 g of gold (approx. $1400 in 1990) or more in cash or articles of trade, must give Zakah at minimum rate of 2.5%. Taxes paid to government do not substitute for this religious duty. Contributor should not seek pride or fame but if disclosing his name and his contribution is likely to encourage others, it is acceptable to do so. The recipient of Zakah are: the poor, the needy, the new Muslim converts, the Muslim prisoners of war (to liberate them), Muslim in debt. Also employees appointed to collect Zakah, Muslim in service of research or study or propagation of Islam, wayfarers who are foreigners in need of help.</p>
<p>The Pilgrimmage (Hajj)</p>
<p>It is a pilgrimage to Mecca, at least once in a lifetime and it is obligatory upon every Muslim male and female who is mentally, physically and financially fit. It is the largest annual convention of faith on earth (in 1989: 2.5 million). Peace is the dominant theme. Peace with Allah, with one&#8217;s soul, with one another, with all living creatures. To disturb the peace of anyone or any creature in any shape or form is strictly prohibited.</p>
<p>Muslim from all walks of life, from every corner of the globe assemble in Mecca in response to the call of Allah. There is no royalty but loyalty of all to Allah, the Creator. It is to commemorate the Divine rituals observed by the Prophet Abrahim and his son Ishmael, who are the first pilgrim to the house of Allah on earth; the Ka&#8217;bah. It is also to remember the grad assembly of the Day of Judgement when people will stand equal before Allah.</p>
<p>Muslims go to Mecca in glory of Allah, not to worship a man. The visit to the tomb of Prophet Muhammad at Madena is highly recommended but not essential in making the Hajj valid and complete.</p>
<p>Islam is a Code of Life</p>
<p>It is a Muslim belief that Muhammad&#8217;s mission was for the whole world and for all the time; because:</p>
<p>Its universality has been clearly confirmed by the Quran (Surah 7: verse 158, 6:19, 34:28, 81:27).</p>
<p>It is a logical consequences of the finality of his prophethood. He had to be the guide and the leader for all men and for all ages.</p>
<p>Allah has provided, through him, a complete code which is to be followed, and this in itself supports the concept of finality, because without completeness, the need for other prophets would remain.</p>
<p>It is a fact that during the last 1400 years no man has arisen whose life and works bear even the slightest resemblance to that of a prophet. Nor has anyone presented a book which could be remotely considered a divine communication. Still less has there been a man to claim legitimate authority as a law-giver fro mankind. The mission of Muhammad, as well as of other prophets who brought the universal message of Islam, does not end with the announcement of the message. He has to guide the people by explaining to them the implications of the Islamic creed, the morale code, the divine injunctions and commandment, and the form of worship that sustains the whole system. He has to exemplify the faith so others can pattern their participation in the evolution of Islamic culture and civilization. The believers must grow under his guidance into an organized community so that Allah&#8217;s word will prevail over all other words.</p>
<p>1. Spiritual Life: prayer (salah), fasting, charity giving (zakah), pilgrimage (hajj), love for Allah and His Messenger, love for truth and humanity for the sake of Allah, hope and trust in Allah at all times and doing good for the sake of Allah.</p>
<p>2. Intellectual Life: True knowledge based on clear proof and indisputable evidence acquired by experience or experiment or by both. The Quran points to the rich sources of knowledge in the whole universe. Islam demands faith in Allah on the basis of knowledge and research and leaves wide open all field of thought before the intellect to penetrate as far it can reach.</p>
<p>3. Personal Life: purity and cleanliness, a healthy diet, proper clothing, proper behaviour, and good healthy sexual relations within marriage.</p>
<p>4. Family Life: A family is a human social group whose members are bound together by the bond of blood ties and/or marital relationship and nothing else (adoption, mutual alliance, common law, trial marriage&#8230;etc.). Marriage is a religious duty on all who are capable of meeting its responsibilities. Each member of the family has rights and obligations.</p>
<p>5. Social Life: Man is ordained by Allah to extend his utmost help and kindness to other family members, relations, servants and neighbours. No superiority on account of class, colour, origin or wealth. Humanity represents one family springing from the one and the same father and mother. The unity of the humanity is not only in its origin but also in its ultimate aims.</p>
<p>6. Economical Life: Earning one&#8217;s living through decent labour is not only a duty but a great virtue as well. Earning is man&#8217;s private possession. The individual is responsible for the prosperity of the state and the state is responsible for the security of the individual. The Islamic economic system is not based on arithmetical calculations alne but also on moral and principles. Man comes to this world empty-handed and departs empty-handed. The real owner of things is Allah alone. Man is simply a trustee.</p>
<p>7. Political Life: The sovereignty in the Islamic State belongs to Allah; the people exercise it by trust from Him to enforce His laws. The ruler is only an acting executive chosen by the people to serve them according to Allah&#8217;s law. The State is to administer justice and provide security for all citizens. Rulers and administrators must be chosen from the best qualified citizens. If an administration betrays the trust of Allah and the people, it has to be replaced. Non-Muslim can administer their personal life of marriage, divorce, foods and inheritance according to the Islamic law or to their own religious teachings. They may pay Zakah or a different tax tributes &#8220;Jizyah&#8221;. They are entitled to full protection and security of the State including freedom of religion.</p>
<p>8. International Life: Man has a common origin, human status and aim. Other people&#8217;s interests and right to life, honour and property are respected as long as the right of Muslim are in tact. Transgression is forbidden. War is only justified if the state security is endangered. During war, destruction of crops, animals and homes, killing non-fighting women, children and aged people are forbidden.</p>
<p>Sources:</p>
<p>1. Sayyid Abu Al-&#8217;Ala Maududi, Islam: Its Meaning and Message, in M. Tariq Quraishi (ed.), American Trust Publications, Indianapolis, Indiana, 1984, 12-14.</p>
<p>2. Islam, An Introduction. Undated. Compiled by Dr. Mohammed Ibrahim Elmasry c/o KW Islamic Association, P.O. Box 823, Waterloo, Ontario, CANADA N2J 4C2, (519) 885-2225.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=83&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/08/the-meaning-of-islam/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>To Be A Muslim &#8212; Fathi Yakan</title>
		<link>http://avaricesoft.wordpress.com/2009/06/08/to-be-a-muslim-fathi-yakan/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/08/to-be-a-muslim-fathi-yakan/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 19:43:22 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=81</guid>
		<description><![CDATA[To Be A Muslim
Fathi Yakan
All praises to Allah, and blessings and peace to His Messenger.
This book is divided into two parts. The first part
focuses on the characteristics that every single Muslim should
portray in order to fulfill the conditions of being a Muslim in
both belief and practice. Many people are Muslim by identity,
because they were ”born [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=81&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>To Be A Muslim<br />
Fathi Yakan</strong></p>
<p>All praises to Allah, and blessings and peace to His Messenger.<br />
This book is divided into two parts. The first part<br />
focuses on the characteristics that every single Muslim should<br />
portray in order to fulfill the conditions of being a Muslim in<br />
both belief and practice. Many people are Muslim by identity,<br />
because they were ”born Muslim” from Muslim parents. They<br />
may not know what Islam really means or its requirements, and<br />
so may lead a very secular life. The purpose of this first part<br />
is to explain the responsibility of every Muslim to become a<br />
knowledgeable and true believer in Islam.<br />
The second part of this book discusses the responsibility<br />
to become an activist for Islam and participate in the Islamic<br />
Movement. It explains the nature of this movement and its<br />
goals, philosophy, strategy, and tactics, as well as the desirable<br />
characteristics of it members.<br />
The failure of various movements in the Islamic world, and<br />
especially in the Arab countries, result from a spiritual emptiness<br />
in these movements as well as in society generally. In such<br />
a situation the principles and institutions of Islam are forgotten.<br />
The westernized leaders and movements collapse when they encounter<br />
serious challenges. These leaders and movements and<br />
the systems of government and economics they try to impose<br />
have fallen because they lacked a solid base. They fell because<br />
they were artificial constructs copied from alien cultures and<br />
did not represent the Muslim community. Therefore they were<br />
rejected by it. This situation is comparable to a kidney transplant<br />
in a human body. Although the body is able to tolerate it<br />
painfully for a short period of time, eventually the kidney will<br />
be rejected and die.<br />
When the sickness of the Muslim Ummah became acute<br />
few Muslims thought of building a new society on Islamic principles.<br />
Instead many tried to import manmade systems and<br />
principles, which looked good but really were grossly defective<br />
and so could be easily toppled and crushed.<br />
The first stage in this process of adaptation was the introduction<br />
of monopoly capitalism. This poisoned the values of<br />
society and the economy and politics, and destroyed the Muslim<br />
identity, as a culture. This led to the devastating defeat of<br />
Islam in 1948.<br />
Despite this bitter experience the Muslims remained prisoners<br />
of the jahili, or pagan systems, introduced from abroad.<br />
If the 1948 defeat was caused by following the Westerners, the<br />
1967 defeat was caused by following the left-wing proletariat of<br />
European, especially Soviet socialism. Bewildered by its falsities,<br />
they succumbed to successive defeats, abandoned by their<br />
socialist allies.<br />
These very painful experiences caused Muslims to lose hope<br />
in their governments and their empty promises. These unbearable<br />
experiences awakened them to a realization that all the<br />
international powers are united to crush them, both the capitalist<br />
West of Euro-America and the socialist West of Russia,<br />
both ”rightists” and ”leftists.” Muslims are finally learning that<br />
the void in their own midst can never be filled by White House<br />
programs, Kremlin plans, the thought of Marx, and Lenin, or<br />
the principles of Che Guevara and Ho Chi Minh<br />
The Muslim Ummah must recognize that Allah intends it<br />
to have its identity different from others, so that all peoples of<br />
the world may develop theirs by applying the universal din of<br />
truth and justice in personal and community life. Recognition<br />
of this Islamic identity is the first step for the Muslim Ummah<br />
to revolutionize the thought and politics of the world.<br />
Contents<br />
1 Part I 2<br />
1.1 The Creed (Aqidah) . . . . . . . . . . . . . 2<br />
1.1.1 Allah . . . . . . . . . . . . . . . . . 2<br />
1.1.2 Final judgement . . . . . . . . . . . 3<br />
1.1.3 Revelation . . . . . . . . . . . . . . . 3<br />
1.1.4 Charity . . . . . . . . . . . . . . . . 3<br />
1.1.5 Prayer . . . . . . . . . . . . . . . . . 3<br />
1.2 Worship . . . . . . . . . . . . . . . . . . . . 4<br />
1.2.1 Dynamic . . . . . . . . . . . . . . . 5<br />
1.2.2 Open-Hearted . . . . . . . . . . . . . 5<br />
1.2.3 Fervent . . . . . . . . . . . . . . . . 5<br />
1.2.4 Dedicated . . . . . . . . . . . . . . . 5<br />
1.2.5 Qur’an-Oriented And Full Of Awe . 5<br />
1.2.6 Constant In Supplication . . . . . . 6<br />
1.3 Morals . . . . . . . . . . . . . . . . . . . . . 7<br />
1.3.1 Scrupulous Conscience (wara) . . . . 7<br />
1.3.2 Modesty, By Guarding One’s Eyes<br />
Against Lust . . . . . . . . . . . . . 8<br />
1.3.3 Wisdom By Guarding one’s Tongue<br />
Against Abuse . . . . . . . . . . . . 8<br />
1.3.4 Honesty And Sincerity . . . . . . . . 9<br />
1.3.5 Good Example . . . . . . . . . . . . 10<br />
1.4 Family Life . . . . . . . . . . . . . . . . . . 10<br />
1.4.1 Responsibilities Before Marriage . . 10<br />
1.4.2 Responsibilities In Marriage . . . . . 11<br />
1.4.3 Responsibilities Of Raising Children 11<br />
1.5 Self Control . . . . . . . . . . . . . . . . . . 11<br />
1.5.1 The Elements Of Strength In Combatting<br />
the Physical Appetites . . . 12<br />
1.5.2 Vulnerabilities to Evil and Defenses<br />
Against Satan . . . . . . . . . . . . . 13<br />
1.6 Preparing for the Future . . . . . . . . . . . 14<br />
1<br />
2 Part II 15<br />
2.1 Living for Islam . . . . . . . . . . . . . . . . 15<br />
2.1.1 Essential Knowledge . . . . . . . . . 16<br />
2.1.2 The Characteristics of People who<br />
live for Islam . . . . . . . . . . . . . 17<br />
2.2 The Compulsory Nature of Islamic Activism 17<br />
2.2.1 In Principle . . . . . . . . . . . . . . 18<br />
2.2.2 By Law . . . . . . . . . . . . . . . . 18<br />
2.2.3 Self-Defense . . . . . . . . . . . . . . 18<br />
2.2.4 In Community . . . . . . . . . . . . 19<br />
2.2.5 In Jihad . . . . . . . . . . . . . . . . 19<br />
2.3 The Islamic Movement: Its Task, Characteristics<br />
and Tools . . . . . . . . . . . . . . 20<br />
2.3.1 The General Task: Universal Outreach 20<br />
2.3.2 General Characteristics . . . . . . . 21<br />
2.3.3 Organizational Characteristics . . . 22<br />
2.3.4 Tools of the Islamic Movement . . . 25<br />
2.4 Distinguishing the Movement from Specialized<br />
Organizations . . . . . . . . . . . . . . 25<br />
2.5 The Nature of the Commitment . . . . . . . 26<br />
2.5.1 The Creed (aqida) . . . . . . . . . . 26<br />
2.5.2 Common Future . . . . . . . . . . . 27<br />
2.6 Strategic Planning . . . . . . . . . . . . . . 28<br />
2.6.1 Clear Goals . . . . . . . . . . . . . . 28<br />
2.6.2 Clear Methods . . . . . . . . . . . . 29<br />
2.7 The Requirements of Bai‘ah and Brotherhood 31<br />
2.7.1 Quality Over Quantity . . . . . . . . 31<br />
2.7.2 Bai’ah and Shari’ah . . . . . . . . . 32<br />
2.7.3 Loyalty And Shari’ah Law . . . . . . 32<br />
2.7.4 The Principles of Bai’ah . . . . . . . 32<br />
2.7.5 The Responsibilities Of A Muslim<br />
Brother / Sister . . . . . . . . . . . 34<br />
2.7.6 The Responsibilities of Brotherhood 36<br />
1. PART I<br />
1.1. The Creed (Aqidah)<br />
The first requirement for a person who has accepted<br />
Islam as his way of life is to understand and accept certain<br />
teachings or elements of knowledge that one can know only<br />
from revelation. These are called the creed or Aqidah. The<br />
correct Aqidah has been revealed by all the Prophets, but<br />
most precisely in the Qura’n and sunnah of the Prophet<br />
Muhammad (may the blessings and peace of Allah be upon<br />
him). One learns the Aqidah as taught by the early generations<br />
of Muslims and by the great scholars who demonstrated<br />
their piety and true understanding about Islam.<br />
The Aqidah of a Muslim may be differentiated into the<br />
following five beliefs: belief in Allah; the final judgement;<br />
revelation through angels, books and messengers; charity;<br />
and prayer, as described in Surah al-Baqarah, verse 177:<br />
It is not piety that you turn your faces towards East or<br />
West – But truly pious is he who believes in Allah and the<br />
Last Day, and the angels, and the Book, and the Messengers;<br />
and spend of his substance, out of love for Him, upon<br />
his near of kin, and the orphans, and the needy, and the<br />
wayfarer, and those who ask, and for the freeing of human<br />
beings from bondage; and is steadfast in prayer, and gives<br />
regular charity; and (truly pious are) they who keep their<br />
promises whenever they promise, and are firm and patient,<br />
in pain (or suffering) and adversity, and in times of peril.<br />
Such are the people of truth, the God-fearing.<br />
*The small letter (s) used in this book after the<br />
Prophet’s name stands for sall-allahu alayhi wa sallam<br />
(peace and blessings be upon him).<br />
1.1.1. Allah<br />
1. The Creator of the universe is Allah, the Allknowing,<br />
the Almighty, and the One who needs no<br />
help. This is also demonstrated by the beauty and<br />
complexity of this universe. The parts of the universe<br />
each need one another in order to ensure their<br />
existence and stability. A single part cannot exist<br />
without the others.<br />
Such a beautiful universe cannot come into existence<br />
without the design and sustenance of Allah the<br />
Almighty. Allah the Almighty has said:<br />
If there were, in the heavens and the earth, other<br />
gods besides Allah, there would have been confusion<br />
in both! But glory be to Allah, the Lord of<br />
the Throne; (Far Exalted is He) above what they<br />
attribute to Him. [Qur’an 21:22]<br />
2. Allah created this world with a purpose, and everything<br />
in it has its own divinely ordained purpose. Allah<br />
has the attribute of completeness, so everything<br />
he does has purpose and coherence. Allah’s purpose<br />
and goals for creating this world can be known<br />
only through His messengers or Words. Allah the<br />
Almighty has said:<br />
Did you then think that We had created you in jest,<br />
and that you would not be brought back to us (for<br />
account)? Therefore exalted be Allah, the King, the<br />
Reality: There is no god but He, the Lord of the<br />
Throne of Honour! [Qur’an 23:115-116]<br />
3. The purpose of life in this world is to know, serve<br />
and worship Allah. Allah the Almighty has said:<br />
I have created jinns and men, that they may serve<br />
Me. No sustenance do I require of them, nor do I require<br />
that they should feed Me. For Allah is He who<br />
gives (all) sustenance, the Lord of Power, Steadfast<br />
(forever). [Qur’an 51:56-58]<br />
2<br />
4. The attributes of Allah are unlimited. The Qur’an<br />
mentions 99 attributes and many verses show the<br />
completeness of His uluhiyyah (godliness or worthiness<br />
to be worshipped). Among these attributes alqayyum<br />
(the self-subsisting), almuqaddam (the promoter.<br />
and albaqi (the eternal, as distinct from<br />
makhluk, or His creation. He has no son, no father,<br />
and no comparison. He does not need help from His<br />
creatures but His creatures do need help from Him.<br />
He is unique (al abid) in His being, attributes, work,<br />
and leadership. He is al ’alim (all-knowing), al hayy<br />
(the living), at wasi’ (the all-embracing), and has<br />
many other attributes unknown to us).<br />
1.1.2. Final judgement<br />
1. Paradise is the reward for the obedient mumin (believer)<br />
and hell-fire is the punishment for disbelievers.<br />
Allah the Almighty has said:<br />
(When) some will be in the Paradise, and some in<br />
the blazing fire.’[Qur’an 42:7]<br />
2. All members of mankind are able to do good and<br />
avoid evil through their effort and will, but one cannot<br />
do good without help and good fortune (taufiq)<br />
from Allah. Allah the Almighty has said:<br />
By the soul and the proportion and order given to it,<br />
and its enlightenment as to its wrong and its right<br />
- truly he succeeds who purifies it, and he fails that<br />
corrupts it.[Qur’an 7-10]<br />
Every soul will be (held) in pledge for its<br />
deeds.[Qur’an 74:38]<br />
3. One should remain close to Allah whether alone or<br />
not. Allah, the Almighty has said:<br />
Do you not see that Allah knows (all) that is in the<br />
heavens and on earth? There is not a secret consultation<br />
among three persons but He is the fourth<br />
among them nor between five but He is the sixth -<br />
nor between fewer nor more but He is in their midst,<br />
wheresoever they be, in the end will He tell the truth<br />
of their conduct, on the Day of Judgement. For Allah<br />
has full knowledge of all things.[Qur’an 58:7]<br />
1.1.3. Revelation<br />
1. Allah has sent His messengers with the Books of revelation<br />
so that all of mankind may know Allah, their<br />
purpose in this world, and their final destination.<br />
Prophet Muhammad (may the blessings and peace<br />
of Allah be upon him) is the final prophet among<br />
the prophets that Allah has sent. He was helped<br />
and strengthened by Allah with the Qur’an, the only<br />
miracle that lasts forever.<br />
2. Allah alone has the right to make laws. The Shari’ah<br />
or law of Allah cannot be overruled. A Muslim is limited<br />
to ijtehad or intellectual effort in deriving laws<br />
from the shari’ah Allah the Almighty has said:<br />
Whatever it be wherein you differ, the decision<br />
thereof is with Allah: Such is Allah my Lord: in<br />
Him I trust, and to Him I turn? [Qur’an 42:10]<br />
3. Human traditions and the opinion of the earlier generations<br />
of Muslim scholars in ta’wil (interpretation<br />
of the Qur’an and hadith) are important. The ta’wil<br />
made by the scholars of the later generations should<br />
not cause bitter arguments between traditionalist<br />
and modernist groups.<br />
1.1.4. Charity<br />
One should love Allah so much that one’s heart is always<br />
looking for Him. This love for Allah will impel one<br />
to good deeds, sacrifice, and struggle for His sake, so much<br />
so that one’s attachment to this temporary world and to<br />
one’s family cannot stop one from doing good deeds. He<br />
has said:<br />
Say, if your fathers, your sons, your brothers, your<br />
mates, or your kindred, and nation or the wealth that you<br />
have gained, or the commerce in which you fear a decline,<br />
or the dwellings in which you delight &#8211; are dearer to you<br />
than Allah or His messenger and the striving in His cause -<br />
then wait until Allah brings about His decision; and [know<br />
that Allah] does not guide the rebellious. [Qur’an 9:24]<br />
One should sacrifice in the cause of Allah because one<br />
likes to taste the sweetness of faith. The Prophet said (may<br />
the blessings and peace of Allah be upon him):<br />
Those who have three things will taste the sweetness of<br />
faith, namely, a love for Allah and His Messenger greater<br />
than for anything else, a love for another only because of<br />
Allah, and hatred of returning to kufr (unbelief) as strong<br />
as one’s hatred of being thrown into hell-fire. [Bukhari]<br />
1.1.5. Prayer<br />
1. One must serve Allah alone, and not admit any rivals<br />
to Him or partners. A Muslim worships Allah<br />
because Allah has ordered him through His Messenger<br />
to do so. Allah the Almighty has said:<br />
For We assuredly sent amongst every people a messenger<br />
(with the command) serve Allah and avoid<br />
evil. [Qur’an 16:36]<br />
2. Every Muslim should learn and try to understand<br />
the names or attributes of Allah. Abu Hurairah narrated<br />
a hadith that the Prophet (may the blessings<br />
and peace of Allah be upon him) said:<br />
3<br />
Allah has 99 names, a hundred less one; everyone of<br />
you who memorizes them will be in Paradise. Allah is<br />
odd (not even) and Allah loves odd things. [Bukhari]<br />
3. Allah should be remembered by reciting His names.<br />
Such dhikr or remembrance of Allah is the best<br />
medicine to cure the soul. It is also the most effective<br />
weapon to fight against problems of the world. Allah<br />
the Almighty told the Prophet to say:<br />
He (Allah) guides to Himself all who turn to Him -<br />
those who believe and whose hearts find satisfaction<br />
in the remembrance of Allah &#8211; for without doubt in<br />
the remembrance of Allah human hearts find satisfaction.<br />
[Qur’an 13:28]<br />
Allah, the Almighty has said:<br />
If anyone withdraws himself from remembrance of<br />
Allah Most Gracious, We appoint for him an evil<br />
one to be his intimate companion. [Qur’an 43.36]<br />
4. Man should ponder the creation of Allah, not his<br />
dhat or person. The Prophet said in one hadith:<br />
Ponder the creation of Allah and not about the person<br />
of Allah, because you will not be able to comprehend<br />
it. [This hadith has been narrated by Abu<br />
Nuiam in al-Hilyah, and also by al-Asfihani in at-<br />
Targhib uia-tarhib.]<br />
5. One must fear only Allah. Such awe of Allah and<br />
fear of separation from Him strengthens one to abstain<br />
from all that is forbidden. Allah the Almighty<br />
has said:<br />
And for those who fear their Lord unseen, for them<br />
is forgiveness and a great reward. [Qur’an 67:12]<br />
Such as obey Allah and His messenger and fear Allah<br />
and do right will win (in the end). [Qur’an 24:7]<br />
6. One should depend on Allah in every matter and<br />
make tawakul (trust in Allah). This generates such<br />
strength of commitment that one will feel at ease in<br />
everything one does. Allah the Almighty has said:<br />
And if anyone puts his trust in Allah, sufficient is<br />
(Allah) for him. [Qur’an 65:3]<br />
The Prophet (s) said:<br />
Be mindful of Allah, and Allah will protect you. Be<br />
mindful of Allah, and you will find Him in front<br />
of you. If you ask, ask of Allah; if you seek help,<br />
seek help of Allah. Know that if the nations were<br />
to gather together to benefit you with anything, it<br />
would benefit you only with something that Allah<br />
had already prescribed for you, and if they gather<br />
together to harm you with anything, they would<br />
harm you only with something Allah had already<br />
prescribed for you. The pens have been lifted and<br />
the pages have dried. [Tirmidhi]<br />
7. One should thank Allah for His mercy and unlimited<br />
gifts. Thankfulness is part of virtue. Allah, the<br />
Almighty has said:<br />
And Allah has brought you forth from your mothers’<br />
wombs knowing nothing but He gave you hearing<br />
and sight and intelligence and affections so that you<br />
might have cause to be grateful. [Qur’an 16:78]<br />
A sign for them is the earth that is dead. We give<br />
it life and produce from it grain which you eat. And<br />
we produce orchards in it with date-palms and vines,<br />
and We cause springs to gush forth from it, so that<br />
they may enjoy the fruits of this (artistry). It was<br />
not their hands that made this. Will they not then<br />
give thanks? [Qur’an 36:33-35]<br />
Allah has promised to increase His mercy for those<br />
who thank Him, and to punish those who are ungrateful.<br />
Allah the Almighty has said:<br />
And remember when your Lord made [this promise]<br />
known: ”If you are grateful [to me], I shall most<br />
certainly give you more and more, but if you show<br />
ingratitude, truly My punishment is severe indeed.”<br />
[Qur’an 14:7]<br />
8. One must repent to Allah and make istighfar (a statement<br />
of repentance). This act of repentance purifies<br />
one’s contrition and faith and instills a feeling<br />
of tranquility and peace in one’s heart. Allah the<br />
Almighty has said:<br />
If anyone does evil or wrongs his own soul but afterwards<br />
seeks Allah’s forgiveness, he will find Allah<br />
Oft-forgiving, Most Merciful. [Qur’an 4:110]<br />
And those who, when they have done something to<br />
be ashamed of or wronged their own souls, earnestly<br />
bring Allah to mind and ask forgiveness for their<br />
sins.- and who can forgive sins except Allah &#8211; and<br />
are never obstinate in persisting knowingly in (the<br />
wrong) they have done; for such the reward is forgiveness<br />
from Allah. [Qur’an 3:135-6]<br />
1.2. Worship<br />
Worship or ibadah in Islam is the peak of submission to<br />
Allah, the connecting step between the creatures and the<br />
Creator, and the key to righteousness in dealing among the<br />
creatures of Allah.<br />
This comprehensive worship or ibadah includes all the<br />
pillars of Islam, i.e., prayer, fasting, charity (zakat), and<br />
pilgrimage, as well as the entire shari’ah The logic of Islam<br />
requires life to be all worship and obedience. This is the<br />
meaning of Allah’s statement:<br />
4<br />
I have created jinns and Men only that they may serve<br />
Me. No sustenance do I require from them, nor do I require<br />
that they should feed Me. For God is He who gives (all)<br />
sustenance, Lord of Power, steadfast (forever). [Qur’an<br />
51:56-58]<br />
And we have been taught to declare:<br />
Truly, my prayer and my death, are (all) for Allah, the<br />
Cherisher of the worlds. [Qur’an 6:163]<br />
The worship of a Muslim should have the following<br />
characteristics. It should be:<br />
1.2.1. Dynamic<br />
Worship must be alive, inspired with the love of Allah,<br />
and productive of right action (ihsan). The Messenger of<br />
Allah (may the blessings and peace of Allah upon him),<br />
when asked about (ihsan). said:<br />
It is to worship Allah as though you see Him, and<br />
though you see Him not, yet truly He sees you. [Bukhari<br />
and Muslim]<br />
Worship must be humble, inspired by both awe of Allah<br />
and intimacy of feeling. ’Aisha (may Allah be pleased<br />
with her) said:<br />
The Messenger of Allah was talking with us and we<br />
were talking with him, but when the time for prayer came<br />
he seemed not to know us nor we him. [Azdi]<br />
The Prophet (s) said:<br />
Many a (people) get nothing but fatigue from their<br />
prayer; and many a (people) get from their fasting nothing<br />
but hunger and thirst. [Nasa’i]<br />
1.2.2. Open-Hearted<br />
Worship should be open to Allah and dedicated to Him,<br />
free from concerns about business and the hardships of this<br />
world. The Messenger of Allah indicated this by saying:<br />
Allah will not look at the prayer which does not relate<br />
the man’s heart with his body. [Musnab Al-Firdausi]<br />
Prayer is directed toward the hereafter; when you start<br />
praying, you leave this physical world. Al-Hassan observed:<br />
A prayer without one’s heart into it is a fast road<br />
to punishment.<br />
1.2.3. Fervent<br />
Worship should be impassioned, unsatiable and one<br />
should never be complacent about it. One should seek<br />
ever greater nearness to Allah by personal prayer and by<br />
responding to Him as a faithful servant. A qudsi hadith<br />
says that Allah told the Prophet (s):<br />
I will declare war against him who shows hostility to<br />
a pious worshipper of Mine. And the most beloved things<br />
with which My slave comes nearer to Me is what I have enjoined<br />
upon him. My slave continued to come closer to Me<br />
through performing Nawafil (praying or doing extra deeds<br />
besides what is obligatory) till I love him. So I become the<br />
sense of hearing with which he hears, and the sense of sight<br />
with which he sees, and the hand with which he grips, and<br />
the leg with which he walks. And if he asks Me, I will<br />
give him, and if he asks my protection, I will protect him,<br />
I do not do anything as I hesitate to take the soul of the<br />
believer, for he hates death, and I hate to disappoint him.<br />
[A hadith qudsi narrated by Bukhari from Abu Hurairah.]<br />
1.2.4. Dedicated<br />
Worship should include supererogatory (nawafil) prayer<br />
at night (qiyam al layl). One should discipline oneself to<br />
become accustomed to prayer at night because it is the<br />
most effective armor of faith for a believer. Allah, the<br />
Almighty, has said:<br />
Truly the rising by night is most potent for governing<br />
(the soul), and most suitable for (framing) the word (of<br />
prayer and praise). [Qur’an 73:6 34]<br />
Allah praises His obedient servants in these words:<br />
They were in the habit of sleeping but little by night,<br />
and in the hours of early dawn, they (were found) praying<br />
for forgiveness. [Qur’an 51:17-18]<br />
Their limbs do forsake their beds of sleep, the while<br />
they call on their Lord, in fear and hope, and they spend<br />
(in charity) out of the sustenance that We have bestowed<br />
on them. [Qur’an 32:16]<br />
1.2.5. Qur’an-Oriented And Full Of Awe<br />
To nourish one’s worship, one should allocate a certain<br />
time to read and think deeply about the Glorious Qur’an,<br />
especially at dawn because Allah the Almighty has said:<br />
The prayer and reading in the morning carry their testimony.<br />
[Qur’an 17:78]<br />
Always bear in mind the following words of Allah concerning<br />
His book:<br />
Had we sent down this Qur’an to a mountain, verily,<br />
you would have seen it humble itself and cleave asunder<br />
for fear of Allah. [Qur’an 59:21]<br />
Reading the Qur’an in this manner helps one to understand<br />
its message soberly, to ponder the awesome future<br />
of man, and to lament the melancholy fate of those who<br />
ignore the promises of Allah. The messenger of Allah said:<br />
”The Qur’an was revealed in all gravity, so when you read<br />
it try to be pensive.” (Abu Ya’la and Abu Naim).<br />
The Prophet (s) said: ”The best worship for my ummah<br />
is reading the Qur’an. (narrated by Abu Naim).<br />
Abdullah Ibn Masud related that the Prophet (s) said:<br />
Verily, the Qur’an is the food of Allah, so come closer<br />
to it if you are able. Verily, the Qur’an is the rope of Allah,<br />
bright light, good medicine, and a guide for those who<br />
hold on to it. When he strays, the Qur’an will remind<br />
him of the path; and when he is misguided, the Qur’an<br />
5<br />
will correct him. Its miracle lasts forever, and will not be<br />
reduced by rejection. Read the Qur’an. Allah will reward<br />
each word of your reading tenfold; and W, ’U, ’M’ is not<br />
one word, but three . [Narrated by al-Hakim]<br />
In his advice to Abu Dharr the Prophet (s) told him:<br />
Recite the Qur’an because this will cast light on the<br />
earth from the heavens? [Narrated by Ibn Haban]<br />
Whoever declares lawful what [in the Qur’an] is prohibited<br />
denies the Qur’an. (Tirmidhi).<br />
1.2.6. Constant In Supplication<br />
Supplication forms the steps to Allah throughout one’s<br />
life because supplication in every detail of life is the essence<br />
of worship. One should use the supplications of the<br />
Prophet (s) when appropriate. Allah the Almighty has<br />
said: ”Call upon Me, and I will respond to you.” [Qur’an<br />
40:60] The following are 21 commonly used and illustrative<br />
supplications of the Prophet Muhammad (s):<br />
1. When Getting Up All praise be to Allah who has<br />
given us life after death and unto Him is the resurrection.<br />
(Bukhari)<br />
2. When Going to Bed In Your name my Lord, O my<br />
Lord, I lie down, and in Your name I will get up.<br />
If you should take my soul, forgive me my sins, and<br />
if you should let me live another day, protect me as<br />
You protect Your righteous servants. [Recorded by<br />
Bukhari, Muslim Abu Da’ud, Tirmidhi, Nasa’i and<br />
Ibn Majah]<br />
3. When Getting Dressed and Undressed O Allah!<br />
Grant me the good of getting dressed (or undressed)<br />
and the good for which these clothes were made; and<br />
I seek refuge in You from any evil in dressing (undressing)<br />
and from the evil of ill intent.<br />
4. When Entering the Bathroom O Allah! I seek refuge<br />
in You from bad and evil things. (Bukhari, Muslim)<br />
5. When Leaving the Bathroom I seek Your forgiveness<br />
(O Allah!). (Abu Da’ud)<br />
6. Before Meals O Allah! Bless what You have bestowed<br />
upon us, and protect us from the punishment of Hell<br />
fire. In the name of Allah.<br />
7. After Meals Praise be to Allah who has fed us, provided<br />
us drink, and made us Muslims. [Abu Da’ud,<br />
Tirmidhi, Nasa’i, Ibn Majah]<br />
8. When Leaving or Entering a House In the name of<br />
Allah, I have put my trust in Allah, there is neither<br />
might nor power but in Allah. [Abu Da’ud, Tirmidhi,<br />
Nasa’i]<br />
9. When Going to the Mosque O Allah! Place light<br />
in my heart, light in my sight, light in my hearing,<br />
light to my right, light to my left, light above me,<br />
light under me, light in front of me, light behind me,<br />
and grant me light. (Bukhari).<br />
10. While Entering the Mosque O Allah! Open for me<br />
the doors of Your mercy. [Muslim, Abu Da’ud, al-<br />
Nasa’i]<br />
11. While Leaving the Mosque O Allah, I beg of You<br />
Your Grace. [Muslim, Abu Da’ud, Nasa’i]<br />
12. After Daily Prayer (Salah) If anyone extols Allah after<br />
every (regular daily) prayer thirty three times<br />
(or say subhanallah) and praises Allah thirty three<br />
times (or say alhamdulitiah) and declares His greatness<br />
thirty three times (or say Allahu akbar), and<br />
says, to complete a hundred,—Noone has the right<br />
to be worshipped but Allah alone, Who has no partner;<br />
to Him belongs all sovereignty, and to him is due<br />
all praise; and He has power over all things,” his sins<br />
will be forgiven even if these are as abundant as the<br />
foam of the sea. (Muslim).<br />
13. On Leaving a Meeting Glory be to You, O Allah: all<br />
praise is due to You: I bear witness that there is no<br />
deity but You. I beg your forgiveness and repent to<br />
You. (Abu Da’ud, al-Hakim).<br />
14. When Setting Out on a Trip O Allah! We seek righteousness<br />
and piety from You in this journey of ours<br />
and deeds that please You. O Allah! Facilitate this<br />
journey of ours, and make it easy on us. O Allah!<br />
You are our companion during this journey and<br />
guardian of our family. O Allah! I seek refuge with<br />
You from any hardships of this journey, from evil<br />
sights, and from any harm to my property, home,<br />
and children. [Muslim, Ahmad, narrated by ’Ali,<br />
Ibn ’Umar.]<br />
15. When One Can Not Sleep O Allah! The stars come;<br />
my eyes become quiet.<br />
16. When Overwhelmed by a Problem or Sadness Allah<br />
suffices us and He is the best guardian. (Abu Da’ud)<br />
17. When Congratulating Newlyweds May Allah Bless<br />
yours [your spouse], and you, and join you in a happy<br />
union. (Bukhari, Muslim).<br />
18. Before Sexual Intercourse with One’s Wife In the<br />
name of Allah. O Allah! Protect us from Satan and<br />
prevent Satan from approaching the child you may<br />
bestow on us. (Bukhari).<br />
6<br />
19. When Visiting the Sick O Allah! Remove his (or<br />
her) suffering, O Lord of mankind. Grant healing for<br />
You are the Healer. There is no cure but from You.<br />
Restore his (or her) health with no trace of illness.<br />
(Bukhari).<br />
20. When Offering Condolences What Allah has taken<br />
belongs to Him and to Him belongs what He has<br />
given. With Him everything has a limited term (in<br />
this world), so be patient and seek reward from Allah.<br />
(Bukhari).<br />
21. For the Dead in a Funeral Prayer O Allah Forgive<br />
him (or her), have mercy upon him, give him peace,<br />
and absolve him. Receive him with honor and make<br />
his grave spacious. Wash him with water, snow and<br />
hail. Cleanse him from faults as you would cleanse<br />
a white garment from impurity. And give him an<br />
abode, in exchange, more excellent than his home<br />
(in this world), and a family better than his family,<br />
and a wife better than his wife. Admit him to Paradise,<br />
and protect him from the torment of the grave<br />
and the torment of the fire. (Bukhari).<br />
1.3. Morals<br />
Moral behaviour is the bottom line or essential message<br />
of Islam. It has been narrated in a hadith of the Prophet<br />
(s):<br />
Verily, I have been sent to perfect morals.<br />
Allah also emphasized this in linking belief or Aqidah<br />
with action:<br />
It is not piety that you turn your faces towards East or<br />
West &#8211; But truly pious is he who believes in Allah and the<br />
Last Day, and the angels, and the Book, and the Messengers;<br />
and spend of his substance, out of love for Him, upon<br />
his near of kin, and the orphans, and the needy, and the<br />
wayfarer, and those who ask, and for the freeing of human<br />
beings from bondage; and is steadfast in prayer, and gives<br />
regular charity; and (truly pious are) they who keep their<br />
promises whenever they promise, and are firm and patient,<br />
in pain (or suffering) and adversity, and in times of peril.<br />
Such are the people of truth, the God-fearing. [Qur’an<br />
2:177]<br />
In another verse:<br />
[Allah is well aware of] those who, when We establish<br />
them in the land, remain constant in prayer and give regular<br />
charity, enjoin the right and forbid the wrong, with<br />
Allah rests the end (decision) of (all) affairs . [Qur’an<br />
22:41]<br />
Morality is the sign and fruit of true belief. Belief<br />
without the resulting moral behaviour is worthless. The<br />
Prophet (s) portrayed this in his various sayings. He was<br />
asked: ”What is the religion?” He replied: ”The religion is<br />
morality.” When asked, ”What is woe (or affliction)?” he<br />
replied, ”Real affliction is lack of morality.”<br />
On the Day of judgement, morality will be weighed<br />
more heavily than anything else. Those whose morals are<br />
weak and deeds are slight, will be judged accordingly. The<br />
Prophet (s), said:<br />
Nothing that will be weighed on the Day of Judgement<br />
will weigh heavier than moral action. [Abu Da’ud and<br />
Tirmidhi]<br />
In Islamic teaching, morality is the core of worship.<br />
Without morality, worship is meaningless and is considered<br />
to be no more than worthless custom and selfserving<br />
habit. Allah, the Almighty, said concerning prayers<br />
(salah): ”Verily, prayers restrain from shameful and unjust<br />
deeds.” [Qur’an 29:45] The Prophet (s) said: A person<br />
who does not desist from bad and unjust deeds after offering<br />
prayers (salah), strays away from Allah. [Narrated by<br />
Tabrani]<br />
Concerning fasting, the Prophet (s) said: None of you<br />
should utter foul words or go to his wife or argue on a day<br />
of fasting, and when somebody reproaches or attacks you,<br />
say to him: ”I am fasting.” [Bukhari and Muslim]<br />
About Hajj, Allah, the Almighty, has said:<br />
For Hajj are the months well-known. And whoever undertakes<br />
the pilgrimage in those [months] shall while on<br />
the pilgrimage, abstain from lewd speech, from all wicked<br />
conduct, and from wrangling; and whatever good you do,<br />
(be sure) Allah is aware of it. [Qur’an 2:197]<br />
The Prophet (s) said:<br />
Whoever performs hajj and abstains from evil words<br />
and unlawful acts will return like the day he was born.<br />
[Bukhari and Muslim]<br />
The Moral behaviour of a Muslim should be guarded<br />
by the following characteristics:<br />
1.3.1. Scrupulous Conscience (wara)<br />
A Muslim not only must avoid prohibited deeds but<br />
must be careful to avoid even any doubtful matter. This<br />
characteristic is expressed by the Qur’anic word, wara’,<br />
which means both piety and caution. The Prophet (s)<br />
said: What is lawful is plain and what is unlawful is plain,<br />
and between the two are doubtful matters about which not<br />
many people know. Thus whoever avoids doubtful matters<br />
maintains clarity and assurance in practicing the religion<br />
and protecting his or her honor; but whoever falls into<br />
doubtful matters falls into the unlawful, like the shepherd<br />
who pastures his flock around a sanctuary, letting it graze<br />
almost but not quite inside. Truly every king has a sanctuary,<br />
and truly Allah’s sanctuary is His prohibitions. Truly<br />
in the body there is a morsel of flesh which, if it be whole,<br />
all the body is whole and which, if it be diseased, all of it is<br />
diseased, and truly it is the heart. [Bukhari and Muslim]<br />
7<br />
The highest degree of wara’ is indicated in the saying<br />
of the Prophet (s): ”One will never achieve the level of mutaqqin<br />
(Godfearing virtuous persons) until he avoids even<br />
what is not considered sinful because he is afraid of failing<br />
into the prohibited.” [Tirmidhi]<br />
1.3.2. Modesty, By Guarding One’s Eyes Against Lust<br />
A Muslim should avoid looking at occasions of sin, such<br />
as at an improperly dressed woman, because such a sight<br />
tends to arise one’s desire and might lead to committing a<br />
sin. Allah, the Almighty, has said:<br />
Tell the believing men to lower their gaze. [Qur’an<br />
24:30]<br />
The Prophet (s) said:<br />
You should guard your sight and protect your dignity,<br />
or Allah will cover your face with humiliation. [Tabrani]<br />
1.3.3. Wisdom By Guarding one’s Tongue Against Abuse<br />
One should avoid unkind words, useless talk, slander,<br />
and detraction. Imam Nawawi said: ”You should know<br />
that one should not talk except to say something beneficial.<br />
When one is undecided whether to speak or keep<br />
quiet, according to the sunnah it is better to keep quiet,<br />
since the allowable saying will probably lead to the unlawful<br />
or doubtful.” Many ahadith of the Prophet (s) state<br />
that the tongue could lead to disaster and calamity. Some<br />
of these are given below.<br />
The abuse of their tongues causes them to be thrown<br />
into the fire on their faces; the believer does not like to<br />
accuse, curse, and use foul language. [Tirmidhi]<br />
Anybody who speaks a lot will have a lot of mistakes,<br />
and those who commit a lot of mistakes will have a lot of<br />
sins, and those who have a lot of sins will be in the Hellfire.<br />
[Baihaiqi]<br />
subsubsectionModesty<br />
A Muslim must always be modest, but this should not<br />
prevent a Muslim from telling the truth. Modesty prevents<br />
one from meddling in other people’s affairs and from raising<br />
one’s voice. Modesty produces infaq (the tendency to<br />
give rather than take in life) and contentment with what<br />
one has achieved after putting forth one’s best effort. The<br />
Prophet (s) said:<br />
Faith (iman) consists of more than sixty or seventy<br />
branches, the greatest of these is the kalimah, ”there is<br />
no god but Allah- and the lowest is removing an obstacle<br />
from the way; modesty is one of the branches. [Bukhari<br />
and Muslim]<br />
A truly modest person would always avoid evil and be<br />
careful regarding the rights of other people.<br />
subsubsectionFortitude<br />
A most important characteristic of a Muslim is fortitude,<br />
which is the strength to persevere in the good with<br />
kindness and patience. Good deeds are hated by most<br />
people, and teaching the truth is full of hardship, torture,<br />
oppression, blame, humiliation, and degradation. The dai’<br />
or caller to Islam faces all of these obstacles, and because<br />
of them, some of these people retreat from their commitment<br />
of daw’ah and abandon their mission to preach the<br />
good news of Islam.<br />
It is clear that the duty and responsibility of a dai’ are<br />
very challenging. They are responsible for bringing the<br />
message of Islam throughout the world so that all human<br />
beings can receive this message. In doing so, the caller<br />
has to encounter people of different backgrounds, the arrogant<br />
and knowledgeable, as well as the educated and the<br />
sensitive, the hard-hearted and the responsive. Therefore,<br />
the callers to Islam must communicate its message in a<br />
manner most fitting to win their hearts. They need a high<br />
degree of fortitude. Many verses of the Qur’an and ahadith<br />
of Prophet Muhammad (peace be on him) encourage<br />
Muslims to persevere in kindness and fortitude. Allah, the<br />
Almighty, has said:<br />
But, indeed, if anyone shows patience and forgive, that<br />
would truly be an exercise of courageous will and resolution<br />
in the conduct of affairs. [Qur’an 42:43]<br />
So overlook (any human faults) with gracious forgiveness.<br />
[Qur’an 15:85]<br />
Those who patiently persevere will truly receive a reward<br />
without measure. [Qur’an 39:10]<br />
&#8230; forgive and overlook, do you not wish that Allah<br />
should forgive you? [Qur’an 24:22]<br />
And the servants of (Allah) Most Gracious are those<br />
who&#8230;&#8230; when the ignorant address them, they say,<br />
”peace!” [Qur’an 25:63]<br />
The Messenger of Allah (s) said:<br />
Verily, whoever has a character of kindness will achieve<br />
the same level (of righteousness) as those who fast and<br />
engage in constant prayer.<br />
Do you want me to tell you what will cause Allah to secure<br />
your future and advance your cause in heaven? They<br />
replied: ”Truly, yes, O Messenger of Allah!” He said, ”Behave<br />
politely to those who do not know you; forgive those<br />
who have oppressed you; give to those who have never<br />
given anything to you; and make brothers of those who<br />
have denied their brotherhood with you.”<br />
When all creatures are gathered on Day of judgement,<br />
a caller will announce: ”Where are the privileged people?”<br />
The Prophet (s) said: ”Then a group of people, consisting<br />
of a small number, will rise and go to Heaven.” Then the<br />
angels will say to them: ”What are your privileges?” They<br />
will answer, ”During the past, when we were oppressed,<br />
we were patient; when something bad was done to us, we<br />
behaved kindly.” Then the angels will say: ”Enter Heaven<br />
and get the reward you deserve.”<br />
The following illustrate the Prophet’s demonstration of<br />
fortitude:<br />
8<br />
1. After the Battle of Hunain, a man said, ”By Allah<br />
this division of war booty is unjust and not for the<br />
sake of Allah.” When the Prophet heard this, he said,<br />
”May Allah be merciful to Prophet Moses. Indeed,<br />
he was tortured more than I am now, but he kept<br />
patience.”<br />
2. Anas narrated: ”One day the Prophet (s) entered<br />
the mosque with clothes containing a piece of course<br />
cloth made in Najran. Then an Arab (bedouin) came<br />
from the back and yanked the cloth until a scratch<br />
was visible on the neck of the Prophet. Then the<br />
bedouin said: ”O Muhammad, give me all the wealth<br />
of Allah that you have.” The Prophet turned to him,<br />
smiled, and said: ”Give him what he wants.”<br />
3. Abu Hurairah narrated: ”A Bedouin came to the<br />
Prophet and said, ’O Muhammad give me two camels<br />
loaded with goods. Verily such a gift won’t make a<br />
dent on either your or your father’s wealth.” Then he<br />
approached the Prophet and yanked his cloth until a<br />
scratch was visible on his neck. The Prophet told his<br />
companions to give the bedouin a sack of flour and<br />
dates.<br />
4. At-Tabarani narrated: ”There was a woman who<br />
used to talk nonsense to men. one day, she passed<br />
by the Prophet while he was sitting on the ground<br />
eating bread and said, ’Look, the Prophet is sitting<br />
and eating like a slave’.”<br />
5. Abu Hurairah narrated: ”Aman said, ’O Muhammad,<br />
I have relatives with whom I always try to keep<br />
good relations, but they break relations with me. I<br />
behave politely to them, but they behave badly to<br />
me. I behave kindly to them but they behave harshly<br />
to me,’ Then the Prophet said, ’If this is true, it<br />
seems that you are too much for them, so Allah will<br />
help you with them if you continue such behaviour.’”<br />
6. A Jew came to the Prophet asking for his debt and<br />
said: ”You are from the tribe of Abd Manaf whose<br />
tribe likes to delay paying debts.” When Umar heard<br />
this, he swore that he would cut off the Jew’s head.<br />
The Prophet said to him, ”O, Umar, you should have<br />
told him to ask for his debt politely, and you should<br />
have asked me to pay him immediately.”<br />
7. It has been narrated that the Prophet Isa (s) always<br />
travelled from one place to another to spread his message<br />
with his disciples. He was constantly speaking<br />
good to his people but they replied with insults, jesting,<br />
and shouts. His companions were surprised to<br />
see this and asked him what was the cause. The<br />
Prophet Isa (s) replied, ”Every person acts in accordance<br />
with what is in him.”<br />
All of these incidents prove the importance for the<br />
callers to Islam to behave kindly, patiently, and openheartedly,<br />
especially in response to aggravation from relatives,<br />
friends, and loved ones. Such behaviour will generate<br />
love and can avoid divisions and argument. The caller to<br />
Islam need only act as Allah wants.<br />
1.3.4. Honesty And Sincerity<br />
A Muslim should be truthful, not dishonest, and speak<br />
the truth regardless of the consequences. Telling a lie is the<br />
worst kind of degraded behaviour and provides an opening<br />
to the devil. Such dishonesty and insincerity weaken the<br />
soul, depress the spirit and undermine the morality generally.<br />
Avoiding this behaviour will produce the characteristics<br />
of fortitude and endurance and will guard against<br />
self-doubt and the influence of the devil. The Prophet (s)<br />
said:<br />
Verily truth will lead to goodness and goodness will<br />
lead to heaven. A person who develops a habit of honesty<br />
will be accepted by Allah as an honest person. But lying<br />
leads to evil, and evil leads to the Hellfire. A person who<br />
lies until dishonesty becomes habitual will be written off<br />
by Allah as a liar.<br />
subsubsectionHumility<br />
The Muslim should be humble, especially toward other<br />
Muslims. There is no difference between rich and poor.<br />
The Prophet (s) always prayed for protection from pride.<br />
Once he said: ”No one will enter Paradise who has even a<br />
little bit of pride.” [Muslim] In a qudsi hadith, Allah<br />
says, ”Pride is My attire, greatness is My robe, whoever<br />
competes with me in either of these will be cast into<br />
Hellfire.”<br />
subsubsectionTrust And Kindness<br />
Every Muslim should avoid undue suspicion, slander,<br />
detraction, teasing, and fault-finding. Allah, the Almighty.<br />
has said:<br />
O you who believe, avoid suspicion as much as possible,<br />
for suspicion in some cases is a sin, and spy not on each<br />
other nor speak ill of each other behind their backs. Would<br />
any of you like to eat the flesh of his dead brother? Nay you<br />
would abhor it. But fear Allah, for Allah is Oft-returning,<br />
Most Merciful. [Qur’an 49:12]<br />
And those who undeservedly annoy believing men and<br />
women are guilty of calumny and a glaring sin. [Qur’an<br />
33:51]<br />
The Prophet (s) said:<br />
O you who believe with your tongue only, your belief<br />
does not yet enter your heart. Do not slander a Muslim<br />
or tell his faults nor even look for your brother’s faults,<br />
because whoever uncovers his brother’s fault, will have his<br />
own faults revealed by Allah even in his own house.<br />
subsubsectionGrace<br />
9<br />
A Muslim should behave graciously, sacrificing self and<br />
wealth for the sake of Allah. We see many examples of status<br />
and high ambition demolished by the desire for wealth.<br />
Allah, the Almighty, has said:<br />
(Believers are those) who spend (freely) out of the gifts<br />
We have given them for sustenince. [Qur’an 8:4]<br />
Whatever good you give benefits your own souls, provided<br />
that you only do so seeking the pleasure of Allah,<br />
for whatever good you give will be repaid in full, and you<br />
shall not be dealt with unjustly. [Qur’an 2:272]<br />
The Prophet (s) said..<br />
Not a day passes but Allah sends two angels to every<br />
servant of His, and the angel says, ”O, Allah, reward those<br />
who spend their wealth for Your sake;” and the other says,<br />
””O Allah, punish those who are stingy.” [Bukhari and<br />
Muslim]<br />
1.3.5. Good Example<br />
A Muslim must set a good example. Every action<br />
should portray Islamic principles in everyday life, in eating,<br />
drinking, dressing, speaking, in peace, during a journey, at<br />
home, in action, and in silence.<br />
1.4. Family Life<br />
Acceptance of Islam carries the obligation to be part<br />
of its message by living one’s life in accordance with this<br />
message so that one is a Muslim in belief, worship, and<br />
morals. Living the message of Islam means working hard<br />
within one’s surrounding community at all levels from the<br />
family to the nation, to the community of mankind, since<br />
Islam was revealed for all mankind.<br />
The Messenger of Allah (s) said: Whoever does not<br />
care about Muslims is not one of them. If one’s duty is<br />
to establish the ummah or moral community in one’s society<br />
and to convey Islam to this society, the first step in<br />
fulfilling this duty is to make one’s home Islamic. One<br />
must establish the din or Islamic way of life in one’s immediate<br />
community, that is, in one’s family, with one’s wife<br />
or husband, children, and relatives in the extended family.<br />
This is exactly what the Messenger of Allah (s) did at the<br />
beginning of his mission. Allah, the Almighty, has said:<br />
So call not on any other god with Allah or you will<br />
be among those under the penalty. And admonish your<br />
nearest kinsmen, and lower your wing to the believers who<br />
follow you. [Qur’an 26:213-215]<br />
So the first responsibility of a Muslim, other than to<br />
oneself, is to one’s family, because Allah, the Almighty,<br />
has said:<br />
O you who believe! Save yourselves and your families<br />
from a fire whose fuel is men and stones, over which are<br />
(appointed) angels stern (and) severe who flinch not (from<br />
executing) the commands they receive from Allah, but do<br />
(precisely) what they are commanded? [Qur’an 66:6]<br />
1.4.1. Responsibilities Before Marriage<br />
Islamic teachings and practices help one to establish a<br />
Muslim family and secure it on the right path. The following<br />
directives facilitate observance of marital responsibilities:<br />
1. Marriage is for the sake of Allah. Its purposes are to<br />
establish a Muslim family, have offspring, transmit<br />
the message of Allah, and through them, carry on<br />
the human race. Allah, the Almighty, has said:<br />
Say: ”Allah did choose Adam and Noah, the family<br />
of Abraham, and the family of ’Imran above all<br />
people, offspring, one of the other. [Qur’an 3:34]<br />
2. Marriage serves to protect one’s modesty and dignity,<br />
and one’s fear of the Lord. The Prophet of Allah (s)<br />
said:<br />
Three [people] are entitled to Allah’s help. The<br />
fighter (mujahid) in the cause of Allah, the trustee,<br />
and the person who marries for protection (of his or<br />
her modesty). [Tirmidhi]<br />
Whoever marries, has completed half of his religion,<br />
and the other half is fear of Allah. [Tabrani]<br />
3. The choice of a lifetime partner, a wife or a husband,<br />
demands one’s best effort. The Messenger of Allah<br />
(s) said:<br />
”Choose[the best] for your generation because [the<br />
failure of a single] generation can lead to a crisis.”<br />
[Ibn Majah]<br />
4. The qualities of a good wife are good behavior and<br />
religious commitment, not wealth and beauty. The<br />
Messenger of Allah (s), said:<br />
Do not marry women because of their beauty; their<br />
beauty may spoil them. Do not marry them because<br />
of their money; their money may oppress them. But<br />
marry them because of their piety (din). And a slave<br />
girl, deaf, but pious is better. [Ibn Majah]<br />
If a man marries a woman because of her (worldly)<br />
status, Allah will reward him only with degradation;<br />
and if a man marries her because of her wealth, this<br />
will bring him only poverty; and if a man marries<br />
because of her family, Allah will reward him only by<br />
humiliation; but if a man marries for the sake of Allah,<br />
Allah will bless him with her and bless her with<br />
him. [Tabrani]<br />
10<br />
1.4.2. Responsibilities In Marriage<br />
The choice of a good spouse does not reduce one’s responsibilities<br />
after the marriage. As a matter of fact, one’s<br />
major responsibilities start right at the first moment of<br />
marriage. These are to:<br />
1. Deal with one’s wife kindly so as to achieve mutual<br />
understanding. The Messenger of Allah (s) said:<br />
The best of you are those who are best to their wives<br />
and I am the best (among you) to my family. [Ibn<br />
Majah and Al-Hakim]<br />
The believers with the most perfect faith are those<br />
who have the best disposition and are kind to their<br />
wives. [Tirmidhi]<br />
2. Develop harmony in thought and spirit based on love<br />
and not only on sexual compatibility. A Muslim couple<br />
should read together, worship together, organize<br />
things together, and have time to enjoy each other<br />
and play together. Thus the Messenger of Allah (s)<br />
used to challenge his wife, ’Aisha, to run races and<br />
helped in her housework, even by mending shoes.<br />
3. Base the relationship of marriage on Islam and in no<br />
way denigrate it or forsake it for convenience or out<br />
of weakness. It was narrated that the Messenger of<br />
Allah (s) said: ”Whoever is submissive to the likes<br />
and dislikes of a woman will be thrown by Allah into<br />
Hell,” and. ”A man’s sin is as great as his wife’s ignorance.”<br />
And, ”Shame on a man who becomes his<br />
wife’s slave.” [Al-Firdausi]<br />
1.4.3. Responsibilities Of Raising Children<br />
A good wife builds a successful marriage by helping to<br />
raise the children according to good principles of Islamic<br />
education. The choice of a bad wife or failure to achieve<br />
Islamic marriage will cause severe problems and eventually<br />
will destroy the whole family.<br />
Any conflict and tension in the life of husband and wife<br />
will be reflected directly on the education and psychology<br />
of the children. Furthermore, the children will inherit the<br />
problems and will be misled. One’s first responsibility in<br />
the Islamic education of one’s children therefore is to- build<br />
an Islamic marriage. Allah, the Almighty, has taught us<br />
to pray:<br />
Our Lord! Grant to us wives and offspring who will be<br />
the comfort of our eyes and give us the grace to lead the<br />
righteous. [Qur’an 25:74]<br />
All children are born innocent. If they are raised well,<br />
they will become righteous, but if they are raised in a bad<br />
environment, their future will be dim. The Messenger of<br />
Allah (s) said”<br />
All children are born innocent. It is their parents who<br />
make them Jewish, Christian, or Zoroastrian. [ Bukhari<br />
and Muslims]<br />
Rearing a son is better than giving a charity. There<br />
is no better gift from a father to his children than good<br />
(education and) behavior. [Tirmidhi]<br />
Be good to your children and teach them good manners.[<br />
Ibn Majah]<br />
When a man dies, only three deeds will continue to<br />
earn him merit. These are an endowment or scholarship<br />
or continuous charity, beneficial knowledge, and righteous<br />
sons who pray for him.<br />
1.5. Self Control<br />
Every person faces internal conflict from birth to death<br />
and will either triumph over it or succumb to it. Allah,<br />
the Almighty, says:<br />
By the soul, and proportion and order given to it; and<br />
its enlightenment as to its wrong and its right &#8211; truly<br />
he succeeds who purifies it, and he fails who corrupts it!<br />
[Qur’an 91:7-10]<br />
The Prophet (s) warned:<br />
Trails will be opened to a man just like a mat, one after<br />
another. When a heart is influenced by a trial, one black<br />
dot will be written on it, and when a heart ignores it, then<br />
a white dot will be written until the heart becomes one of<br />
the two kinds, either white as white stone, which will pass<br />
any test, or dark black, because it has never followed the<br />
good or ignored evil in its conflict with the soul.<br />
Mankind can be categorized into two groups:<br />
1. Those who are defeated by their desires. These people<br />
obey the world and are immersed in worldly matters.<br />
They are the nonbelievers. Those who follow<br />
them are the ones who forget Allah, so Allah forgets<br />
them. Says the Qur’an:<br />
Have you ever seen a person who takes as his god<br />
his own desires? Allah knows this and so has left<br />
him astray, and sealed his hearing and his heart<br />
[and understanding] and veiled his sight. Who, then,<br />
will guide him after Allah [has withdrawn guidance]?<br />
Will you not then receive admonition. [Qur’an 45:23]<br />
2. Those who struggle against their desires. In doing so,<br />
sometimes they win and sometimes they lose. When<br />
they do wrong they repent. When they commit sins<br />
they regret them and ask forgiveness from Allah. Allah,<br />
the Almighty, says:<br />
Vie with one another to attain your Sustainer’s forgiveness<br />
and to a paradise as vast as the heavens,<br />
when they and the earth, which has been readied for<br />
the God-conscious who, when they have done something<br />
to be ashamed of or wronged their own souls,<br />
11<br />
earnestly bring God to mind and ask for forgiveness<br />
for their sins &#8211; for who can forgive sins except Allah<br />
- and do not knowingly persist in (the wrong) they<br />
have done. [Qur’an 3:135]<br />
The Prophet (s) told us: ”All sons of Adam make<br />
mistakes. The best among them are those who do<br />
wrong and repent.” [Tirmidhi]<br />
In this matter it was reported from Wahib ibn<br />
Munabbih, that once Iblis went to meet Yahya ibn<br />
Zakariya. Yahya said to him, ”Tell me how you fare<br />
with the sons of Adam.” Iblis said, ”Some of them<br />
are just like you; they are free from sins so we can<br />
never seduce them. The second type of people I can<br />
play with just like children play with balls. Their<br />
desires help us to defeat them. But the third type of<br />
people are very difficult for us. We pursue them until<br />
we succeed in achieving what we want, but then they<br />
repent, and destroy all that we have accomplished,<br />
so we can never frustrate or finally stop them.”<br />
1.5.1. The Elements Of Strength In Combatting the Physical<br />
Appetites<br />
There are two sources of strength in managing physical<br />
desires. These are:<br />
1) Hearts<br />
Hearts become an element of strength in maintaining<br />
order in one’s soul when they are alive, soft, pure, and<br />
strong. Remember the saying of ’Ali ibn ’Abi Talib: ”Allah<br />
has a water container in the earth, which is a heart.<br />
The hearts that Allah likes most are those which are the<br />
softest, the purest, and the strongest.” Then ’Ali explained<br />
the meaning of these words, namely, ”strongest in religion,<br />
purest in trust, and softest toward one’s brother” ’Ali ibn<br />
’Abi Talib added: ”The hearts of Believers are pure and<br />
full of light. On the other hand, the hearts of Disbelievers<br />
are dark and always sick.” In the words of the Qur’an:<br />
Believers are those who, when God is mentioned, tremble<br />
with awe in their hearts, and, when they hear His messages,<br />
find their faith strengthened, and put all their trust<br />
in their Lord? [Qur’an 8:2]<br />
Truly it is not their eyes that are blind, but their hearts,<br />
which are in their breasts.[Qur’an 22:46]<br />
Will they not, then, ponder over the Qur’an? &#8211; or are<br />
there locks upon their hearts? [Qur’an 47:24]<br />
2) Mind and Intellect<br />
The rational faculty of one’s soul, known as the mind,<br />
and the spiritual faculty, known as the intellect or spirit,<br />
can contribute to victory over the material faculty, known<br />
as the body, if both mind and spirit are supplied with<br />
knowledge from experience and study. Such knowledge<br />
makes possible discrimination between good and bad and<br />
can bring one closer to Allah, so one can know His strength<br />
and greatness. This is what Allah meant in His revelation,<br />
about those who can see past the observable world, to the<br />
inner meaning behind it:- Of all His servants, only those<br />
endowed with spiritual understanding stand [truly] in awe<br />
of Allah, [for they alone comprehend] that Allah truly is<br />
Almighty, and much Forgiving. [Qur’an 35:28]<br />
The Prophet (s) praised the marvel of the human mind<br />
and spirit in his exclamation:<br />
The greatest dignity bestowed by Allah on His creatures<br />
was the human mind and spirit. [Tirmidhi]<br />
Once the Prophet (s), said to ’Ali ibn Abi Talib:<br />
A person tries to get closer to Allah with various good<br />
deeds; get yourself closer to Allah with knowledge.<br />
The highest achievements come from the faculties of the<br />
mind and Spirit, because they can direct one to the right<br />
path and protect one from evil. This Is why Islam encourages<br />
us to acquire knowledge and to deepen our knowledge<br />
of the din so that our mind can learn to differentiate between<br />
good and bad and between right and wrong. The<br />
Prophet (s) said:<br />
Whomever Allah wants to reward with goodness He<br />
gives him an understanding of the din.<br />
The advantages of the learned over those who only worship<br />
is like my advantages over the lowest people among<br />
my companions.<br />
These advantages come from moral values and from the<br />
role of knowledge in deepening our faith and revealing the<br />
reality of the universe. The minds of the awakened believers<br />
can differentiate between good and bad, right and<br />
wrong, lawful and unlawful, because such believers have<br />
an awareness that enables them to see everything through<br />
the light of Allah. Allah, the Almighty, has said:<br />
For any to whom Allah gives not light, there is no light?<br />
[Qur’an 24:40]<br />
Spiritual illumination can be extinguished only by iniquitous<br />
actions, by constantly remaining in a state of iniquity,<br />
and by deliberately committing sins and never repenting<br />
afterwards. The Prophet (s) said:<br />
If a person commits sins, his spirit will be extremely<br />
alienated from him.<br />
If it were not because of the evils playing around the<br />
hearts of the sons of Adam, surly they could comprehend<br />
the governance of the heavens and the earth.<br />
Anas reported:<br />
While I was on the way to meet ’Uthman, I saw a<br />
woman. I watched the woman with my full attention and<br />
I was taken with her beauty. When I entered, ’Uthman<br />
said: ”One of you entered this house to meet me while<br />
the signs of adultery were still visible in both of his eyes.<br />
Don’t you know that one can commit adultery through<br />
one’s eyes? Therefore you must make repentance or I will<br />
mete out to you with a special punishment!” Then I asked,<br />
”Is there any revelation after the Prophet?” Uthman answered,<br />
”No, but my opinion is objective and based on<br />
12<br />
clear evidence and careful scrutiny.”<br />
The Signs Of Spiritual Defeat<br />
When one’s heart becomes immoveable, one’s mind<br />
perverted, and one’s spirit immersed in darkness, especially<br />
after acknowledged defeat in combat with the Devil,<br />
then all the doors of evil are opened to one’s soul. The<br />
Devil’s evil power than spreads in the sons of Adam like<br />
the flow of blood in their bodies. We must be aware of<br />
this danger and recognize that once the soul’s defenses are<br />
down the Devil will become its closest friend. Allah, the<br />
Almighty, has said:<br />
Are you not aware of those who would be friends with<br />
people whom Allah has condemned? It is they who are<br />
the greatest liars. Satan has gained mastery over them<br />
and caused them to remain oblivious of the remembrance<br />
of Allah. [Qur’an 58: 19]<br />
The Qur’an tells us that the Satan, the sworn enemy<br />
of man, declared to Allah after expulsion from Paradise.<br />
Satan said:<br />
Now that You have thwarted me, I shall most certainly<br />
lie in ambush for them all along Your straight way, and<br />
shall most certainly fall upon them openly as well as in a<br />
manner beyond their ken, and from the right and the left?<br />
[Qur’an 7:16-17]<br />
The most dangerous disease that strikes those who are<br />
defeated is the disease of doubt. Satan makes them feel uncertain<br />
about everything they do, in order to cause them<br />
to deviate from the right way of Allah. In this context, the<br />
Prophet (s) said:<br />
Verily, Satan tries to stop the sons of Adam in many<br />
ways. He tries to stop them by attacking Islam itself, saying:<br />
”Why are you embracing Islam and leaving your religion<br />
and the religion of your forefathers.” The sons of<br />
Adam ignore the Satan and embrace Islam. Then Satan<br />
tries to stop them by opposing migration for the sake<br />
of Allah, saying: ”What are you doing now is migration,<br />
wherein you abandon your home and all that bore you.”<br />
The sons of Adam just ignore the Satan and then migrate.<br />
Then the Satan tries to stop them by attacking<br />
jihad, saying: ”What you are doing now is waging jihad,<br />
whereby you will fight and then get killed, and your wives<br />
will marry other men and your belongings will be divided.”<br />
But the sons of Adam ignore him and wage jihad. Then<br />
the Prophet (s) said: ”Whoever does this and dies has<br />
earned the right to Paradise.” [Nasa’i]<br />
The cowardly tactics of Satan are alluded to in the following:<br />
Satan says to man, ”Deny the truth!” But as soon<br />
as [man] has denied the truth, [Satan] says, ”Behold, I am<br />
not responsible for you: behold I fear Allah, the Sustainer<br />
of all the worlds!” [Qur’an 59:16]<br />
1.5.2. Vulnerabilities to Evil and Defenses Against Satan<br />
In order to help men overcome the trials and fantasies<br />
of Shaitan and to overpower this arch enemy, Islam provides<br />
many weapons. The first is to recognize one’s vulnerabilities.<br />
Knowledgeable scholars advise one to learn<br />
how Shaitan enters the hearts of men, namely, through<br />
the following ten doors:<br />
1. Greed and hostility. One can counter this by developing<br />
the habit of trusting others and feeling content<br />
with what one has achieved after sincere effort.<br />
2. Love of this life, which one can counter by fearing<br />
the approach of sudden death.<br />
3. Love of idleness and luxuries, which one can overcome<br />
by contemplating the assurance that good<br />
times will not last, but punishments will.<br />
4. Pride, which can be opposed by humbly thanking<br />
Allah for His bounties and fearing His punishment.<br />
5. Haughtiness and disrespect for others, which one can<br />
overcome by recognizing their God-given dignity and<br />
rights.<br />
6. Envy, which can be combatted by developing the<br />
virtue of contentment (qana ) with what one has<br />
earned through hard work and by accepting the gifts<br />
and rewards from Allah to his creatures.<br />
7. Boastfulness and a craving for praise, which one can<br />
counter by developing the virtues of honesty and sincerity.<br />
8. Covetousness, which one can overcome by remembering<br />
the transience and inevitable destruction of<br />
all material possessions and the eternity of Allah, as<br />
well as by remembering the assurance of reward from<br />
Allah and the futility of relying on rewards from one’s<br />
fellow men.<br />
The best way, according to Islamic wisdom, to avoid Satanic<br />
influence is to remember Allah by invoking him at<br />
the beginning of everything we do. In this context, Abu<br />
Hurairah narrated how the Shaitan for the Believers met<br />
the Shaitan for Nonbelievers.<br />
The Shaitan for the non-Believers is very fat, in contrast<br />
the Believers, who is very thin and sad. The Shaitan<br />
for the Believers was asked why he was thin and sad. He<br />
said: I went to a man to test him. Whenever he wanted<br />
to eat he mentioned the name of Allah, which made me<br />
hungry. When he drank, he mentioned the name of Allah,<br />
which made me thirsty. Also when he wore his cloths, he<br />
mentioned the name of Allah, which made me feel naked;<br />
when he applied hair cream, he mentioned the name of Allah,<br />
and it made my hair dry and messy. The Shaitan for<br />
13<br />
the Non-Believers then said: ”But when I went to people<br />
who never did all these things that you have mentioned, I<br />
shared their food, their drink and their clothes.”<br />
Another way of defense against Shaitan is to avoid eating<br />
luxurious foods even though they are lawful and clean,<br />
because Allah has said:<br />
Eat and drink but not to excess, for Allah does not love<br />
wasters. [Qur’an 7:31]<br />
The Prophet (s) said.<br />
Verily Shaitan runs through the sons of Adam like the<br />
flow of the blood, so constrain the path of the Shaitan by<br />
hunger. [Ahmad]<br />
Another way to defend against the evil one is by reading<br />
the Qur’an, remembering Allah, and making repentance.<br />
The Prophet (s) said:<br />
Verily, Shaitan attacks the hearts of the sons of Adam.<br />
Whenever the sons of Adam remember Allah, Shaitan<br />
backs off, but whenever they forget Allah, Shaitan eats<br />
their hearts.<br />
Still another weapon for defense is to avoid hasty behavior<br />
and adopt the character of carefulness in everything<br />
one does. The Prophet (s) said,<br />
Hastiness is from Shaitan and caution (and carefulness)<br />
is from Allah the Almighty.<br />
Most important though in introducing discipline and<br />
self-control in one’s life, is to act on the following wisdom<br />
recalled by Allah:<br />
When thoughts of evil from Satan assault them, those<br />
who fear Allah, bring Allah to remembrance, whereupon,<br />
lo! they see (aright) . [Qur’an 7:201]<br />
1.6. Preparing for the Future<br />
Faith in Islam produces conviction that its potential for<br />
good in the world is unlimited. As a system of thought and<br />
a way of life from Allah, the Almighty, Islam is the primordial<br />
religion and the only ”religion” designed to govern this<br />
life. It is the only ”religion” that is designed for the nature<br />
of man by man’s Creator and is capable of producing and<br />
sustaining a balance between man’s spiritual and physical<br />
needs. Allah, the Almighty, has said:<br />
Should He not know &#8211; He who created [everything]? For<br />
He is the One Who understands the finest mysteries (and)<br />
is well acquainted (with them). [Qur’an 67:14]<br />
Islam’s Divine character gives it more dignity than any<br />
manmade system. This universal din is also eternal and<br />
so can fulfill the needs of man at all times and places, at<br />
every level of community.<br />
Its universality means that Islam is all-encompassing<br />
and thus extends beyond the boundaries of climate and<br />
across all differences in race, language and culture. The<br />
open and comprehensive character of Islam is inherent in<br />
its Divine origin as a gift from Allah designed for human<br />
nature.<br />
Its all-inclusiveness as a macro-system of Divine purpose<br />
for all life makes this din relevant to all life’s problems<br />
and opportunities. The systems &#8211; analytic framework<br />
or paradigm of this religion, known as the shari’ah or -<br />
Islamic law,” makes it possible for scholars, using ijtehad<br />
or analytical logic, to apply it through the analogical techniques<br />
(qiyas) of istihsan (identification of the general good<br />
- hasn of man) and maslaha mursalah (commonweal).<br />
Its comprehensiveness distinguishes this primordial Islamic<br />
din from all other man-made systems. Since Islam<br />
comes from Allah, Who is the Most Knowledgeable<br />
and knows everything about mankind’s changing needs,<br />
by comparison with it, any man-made system must he incomplete.<br />
No other system can equal its guidance for human<br />
governance, whether at the psychological level of the<br />
human person or at the sociological level of the human<br />
community. Allah, the Almighty, has said:<br />
[Say: ”Our life takes its”] hue from Allah! And who<br />
could give a better hue [to life] than Allah, if we but truly<br />
worship him? [Qur’an 2:138]<br />
In their efforts to build a better world, Muslims must<br />
know the limits of the manmade systems, such as capitalism,<br />
socialism, communism, and democracy. As products<br />
of human philosophies and social engineering, these systems<br />
are inherently limited or incomplete in substantive<br />
scope and time-frame.<br />
The narrow-mindedness of both left and right wings<br />
have always jeopardized humankind. These secular extremists<br />
are responsible for the disappearance of family<br />
and community ties, and for moral degradation and for<br />
the decline of eternal values. Their egoism and individualism<br />
have replaced the community values of helping, loving,<br />
and caring for each other.<br />
Neither capitalism nor socialism can build the paradise<br />
that their proponents promise, because their narrowly focused<br />
institutions promote the concentration of wealth<br />
and ignore the incentives of broad-based ownership of the<br />
means of production and other essential characteristics of<br />
a complete system of society based on Islamic principles<br />
of economic justice. Equally inadequate are the political<br />
systems of modern secular culture, whether democracy, republic<br />
or monarchy, because for most of the people in the<br />
world they have brought on corruption and exploitation.<br />
Reliance on governance by military force to sustain unjust<br />
regimes has oppressed billions of people, including Muslim<br />
minorities in Kashmir, Eritria, Ethiopia, the Philippines<br />
and Palestine.<br />
All of these man-made systems of economy, politics and<br />
security undermine the basic human responsibilities of Islamic<br />
law, namely, the responsibility to promote the rights<br />
to life, community, freedom, dignity, knowledge, and private<br />
property. These secular systems, spawned in modern<br />
Western civilization, can be replaced by morally and spiritually<br />
based systems only when Muslims become aware<br />
14<br />
that Allah has shown us the principles and strategy designed<br />
to liberate man from the clutches of Satan. Truth<br />
and justice can become governing values in the world only<br />
when the Muslims revive their own heritage and apply the<br />
Qur’an and sunnah to change themselves as tile first step<br />
to change the world.<br />
Verily, Allah does not change the condition of a people<br />
unless they change their inner selves. [Qur’an 13:11.]<br />
2. PART II<br />
2.1. Living for Islam<br />
Commitment to Islam requires proper creed, worship,<br />
and morals and observance of the Islamic guidelines for<br />
family life and personal self-discipline, as elaborated in<br />
Part One of this book. In addition, true commitment requires<br />
every Muslim to dedicate his or her life in a jihad<br />
to establish and maintain a system of Islamic governance.<br />
Three Types of People<br />
There are three broad categories of people:<br />
1) The Materialists<br />
The first group is secular in both ideology and practice.<br />
Regarding these people the Qur’an says:<br />
And they say: ”There is nothing beyond our life in this<br />
world, for we shall not be raised from the dead.” [ Qur’an<br />
6:29]<br />
And they say: ”What is there but our life in this world?<br />
We shall die as we come to life, and nothing but Time can<br />
destroy us.” But of that they have no knowledge; they<br />
merely conjecture. [Qur’an 45:24]<br />
The secular humanists including the Communists and<br />
the existentialists (or post-modernists), all are products of<br />
this materialist ideology. A philosopher once said: ”This<br />
universe was not created by either God or man. It has existed<br />
in the past and will be a torch of life that burns and<br />
dies in the future in accordance with the governing laws of<br />
nature.” Lenin commented laconically, ”This is a pleasant<br />
description of dialectical materialism.”<br />
When mankind ignores the existence of life after death,<br />
where all the deeds are accountable, the material world will<br />
he man’s greatest goal and have the highest priority in his<br />
drive for knowledge They will work for it and drown in<br />
their desires for its delights without limit.<br />
2) The Functional Atheists<br />
These people claim to he Believers but are captives of<br />
materialism. They believe formally in Allah and the afterlife,<br />
and even think they are doing good, but their belief,<br />
worship (if any), and morals are pretentious and have no<br />
practical effect in life. Basically this type of people are<br />
materialists even though they may perform spiritual acts.<br />
Functionally, these people are atheists.<br />
According to Imam Hasan Al-Banna there are three<br />
such groups of people. [Hasan Al-Banna, Toward the Future<br />
of Man] He writes, ”The Qur’an has established the<br />
purpose of our life and the reason for our creation. First,<br />
the Qur’an refers to a group of people who live only for<br />
eating and enjoyment:<br />
Verily Allah will admit those who believe and do righteous<br />
deeds to Gardens beneath which river flow; while<br />
those who reject Allah will enjoy (this world) and eat as<br />
cattle eat; and the fire will be their abode [Qur’an 47:12]<br />
Second, the Qur’an describes a group of people who<br />
bye for the glitter of worldly wealth:<br />
Fair in the eyes of men is the love of things they covet:<br />
women and sons; heaped-up hoards of gold and silver;<br />
horses branded (for blood and excellence); and (wealth of)<br />
cattle and well-tilled land. Such are the possessions of this<br />
world’s life. But nearness to Allah is the best of the goals.<br />
[Qur’an 3:14]<br />
Thirdly, the Qur’an designates a group of people who<br />
live only to slander and find fault with others and to encourage<br />
mischief and destruction in these word:<br />
There is the type of man whose speech about this<br />
world’s life may dazzle you, and he calls Allah to witness<br />
what is in his heart. Yet he is the most contentious of<br />
enemies. When he turns his back, his aim everywhere is<br />
to spread mischief throughout the world and destroy crops<br />
and cattle. But Allah does not love mischief.<br />
These three goals in life Allah has bid us to avoid, because<br />
He has assigned the believers a higher purpose, which<br />
is to guide mankind to the divine path, and to illuminate<br />
the universe with the brightness of Islam<br />
3) The Sojourners<br />
These people, who view themselves as living only temporarily<br />
in the world, are the true believers. They understand<br />
the real meaning of life and the value of this world<br />
compared to the hereafter. The Qur’an says”<br />
What is the life of this world but play and amusement?<br />
But best is the home in the hereafter for those who are<br />
righteous. Will you not then understand. [Qur’an 6:32]<br />
This worldly life can not deter them from pursuing the<br />
purpose of their creation in this life. Allah says in the<br />
Qur’an:<br />
I have created jinns and men only that they may serve<br />
Me. [Qur’an 51:56]<br />
The True Believer conceives the world as a field of<br />
struggle. His life, knowledge, business, wealth, home,<br />
thoughts are devoted to obeying Allah and fulfilling His<br />
will. In contrast, the materialist uses the same capabilities<br />
to fulfill his selfish desires. This is evident in most of the<br />
achievements of modern civilization. The goal of this civilization<br />
is to maximize human pleasure and not to develop<br />
man and the universe toward peace and harmony. Most of<br />
the human inventions, such as the automobile, aeroplane,<br />
refrigerator, dryer, washer, furniture, clothes, music, and<br />
thousands of industrial products are designed to fulfill the<br />
15<br />
human desire for physical ease and enjoyment. Islam encourages<br />
scientific and industrial research, development,<br />
and production , but only in accordance with moral guidelines<br />
in order to assure that our material progress will not<br />
cause harm and instead will benefit the entire community<br />
of man.<br />
2.1.1. Essential Knowledge<br />
In order to live entirely for Islam and follow the Islamic<br />
path, one must master some basic elements of knowledge,<br />
among which the following five should be highlighted:<br />
1. The Divine Purpose of Life &#8211; to serve and worship<br />
Allah only. [Qur’an 51:56] He it is Who created the<br />
heavens and the earth in six days &#8211; and His Throne<br />
was over the waters &#8211; that He might try you to determine<br />
who is best in conduct. [Qur’an 11:7]<br />
2. The Value of the World<br />
Allah tells us:<br />
Do you prefer the life of this world to the Hereafter?<br />
But little is the comfort of this life as compared with<br />
the Life to Come. [Qur’an 9:38]<br />
Such are the possessions of this world’s life; but the<br />
nearness toAllah is the best of the goals. [Qur’an<br />
3:14]<br />
And in the hadith we read:<br />
It has been narrated that one day the Prophet (s)<br />
was standing beside a garbage dump and he called<br />
to the companions and said: ”Pursue the world.”<br />
Then he took a smelly piece of garbage and a rotten<br />
bone and said: ”This is the world.”<br />
On another day, the Prophet (s) saw the cadaver of<br />
a young sheep that had been thrown away by the<br />
owner. Then the Prophet (s) turned towards his<br />
companions and said: ”Have you ever thought how<br />
worthless is this cadaver to the owner. By Allah,<br />
the world is more worthless in the eyes of Allah than<br />
this cadaver in the eyes of its owner. If the world<br />
were equal in value to a mosquito’s wing, surely Allah<br />
would not have given the unbelievers even a sip<br />
of water.”<br />
Then the Prophet (s) said: ”Doomsday is around<br />
the corner, but humans are still lusting for the world<br />
and are distant from Allah.” Then he added. ”The<br />
world is a prison for the believers and paradise for<br />
the unbelievers.” [Muslim]<br />
3. The Certainty of Death Allah tells us:<br />
All that is on earth will perish, but the face of your<br />
Lord will abide for ever &#8211; Full of Majesty, Bounty and<br />
Honor. [Qur’an 55:26-27]<br />
Every soul shall have a taste of death, but only on<br />
the Day of Judgement shall you be paid your full recompense.<br />
Only he who is saved from the Fire and<br />
admitted to the Garden will have attained his purpose<br />
in life, for the life of this world is but goods and<br />
chattels of deception. [Qur’an 3:185]<br />
Several abadith are relevant:<br />
Abu Dharr AI-Ghifari reports: ”I asked the Messenger<br />
of Allah, ’What was the message of the revelation<br />
to Moses?’ The Prophet (s) replied: ’The books revealed<br />
to Moses are a reminder. It is surprising to<br />
see people who believe in death but still feel happy,<br />
people who believe in Hell but still laugh, people who<br />
believe in Allah’s assurance but still feel unsatisfied,<br />
people who notice how the world treats those who<br />
live in it and still desire it, and people who believe<br />
in the Day of Judgement and still do not do good<br />
deeds’.”<br />
It has been narrated from Abu Hurairah that he said:<br />
”We went out together with the Prophet (s) to accompany<br />
a funeral. As the Prophet (s) was sitting<br />
next to the grave, he said, -Whenever a person comes<br />
to this grave it will shout: ”Oh son of Adam, have<br />
you forgotten me? Do you realize that I am a lonely<br />
place to be in, a quiet place, a place for insects, and<br />
a narrow place unless Allah makes me wider?” Then<br />
the Prophet (s) said, ’The grave is either part of a<br />
garden of Paradise or a hole in Hell’.” [Tabrani]<br />
4. The Difference Between Right and Wrong<br />
In order to live for Islam one must learn the essentials<br />
of Islam jurisprudence, which is foundation of<br />
Islam and of all Knowledge. Allah the Almighty, has<br />
said:<br />
Do not approach the Qur’an in Haste, before it has<br />
been revealed to you in full, but say, ”O my Sustainer,<br />
make me grow in knowledge.” [Qur’an 20:114]<br />
The Prophet (s) said:<br />
Verily, knowledge is obtained by learning while understanding<br />
is obtained by experience. Whenever<br />
Allah wants to benefit a person, He gives him understanding<br />
of the din. [Tabrani]<br />
Verily, the prophets did not want dinars of dirhams,<br />
but knowledge. Whoever will accept it, will receive<br />
a real wealth. [Abu Da’ud and Tabrani]<br />
5. The Fallacies of Ignorant<br />
The wise man should learn to know his enemies. He<br />
should understand their way of thinking, their factional<br />
divisions, and their way of fighting. Moreover,<br />
should study their defects and shortcomings. Since<br />
16<br />
one’s greatest enemy is ignorance, one must know the<br />
fallacies of the ignorant and their direct and indirect<br />
consequences, so then one can be prepared confront<br />
and fight them. The advice of the Prophet (s) is true:<br />
Whoever learns the language of tribe, will be safe<br />
from (their)tricks.<br />
2.1.2. The Characteristics of People who live for Islam<br />
Those who live by Islam and for Islam must follow the<br />
teachings of Islam, so that its patterns is their lives are<br />
distinguishable form the non-Islamic patterns of others. A<br />
life committed to Islam is:<br />
Action-Oriented Commitment to practical action is essential<br />
because faith is not mere idea by it is rooted in your<br />
heart so that its truthfulness can be proved by action. Allah,<br />
the Almighty, has said:<br />
Verily man is loss, except such as have faith and do<br />
good works. [Qur’an 103:2-3]<br />
Do you enjoin right conduct on people, and forget (to<br />
practice it) yourselves, and yet you study the Book? Will<br />
you not understand? [Qur’an 3:44]<br />
Grievously odious is it in the sight of Allah that you do<br />
not practice what you preach. [Qur’an 61:3]<br />
Al-Ghazali said: ”Two men bring disaster to me, a virtuous<br />
man with his falsehood and an ignorance man with<br />
his adoration. The latter dupes people with his adoration<br />
and the former dupes people with his falsehood.” The<br />
prophet (s) reminded the believers:<br />
Be a person who practices wisdom and not one who<br />
merely talks about it.<br />
Problem-Oriented A committed activist is aware of<br />
problems encountered by other Muslims and joins them<br />
in seeking solution. The Prophet (s) said:<br />
Move together with the book of Allah wherever it takes<br />
(You).<br />
Whoever does not pay special attention to the problems<br />
of Muslims, is not one of us.<br />
You are a corner of the corners of Islam, so don’t let it<br />
be attacked from your corner.<br />
In the battle of Uhud, Saad Ibn Al-Rabie died with 70<br />
wounds on his body. Just before he died, he said to Zaid<br />
ibn Thabit: ”Verily, I have smelt the aroma of Paradise.<br />
Tell the Ansar that Allah will honor His promises to those<br />
who are sincere toward the Prophet (s) and are able to<br />
catch his attention.” Then Allah took his soul.<br />
Honorable in the Defense of Truth Pride in one’s faith<br />
is one of the characteristics of the Believers. Allah, the<br />
Almighty, has said:<br />
But honor belongs to Allah and His Messenger, and to<br />
the Believers. [Qur’an 63:8]<br />
So lose not heart, nor fall into despair, for you must<br />
gain mastery if you are true in faith. [Qur’an 3:139]<br />
It has been narrated that the Believers who were migrating<br />
to Ethiopia to gain freedom of religion met the<br />
King of Ethiopia, Al Najashi. One of the priests who was<br />
there with Al-Najashi started the discussion with the Believers<br />
by commanding: ”Bow to the King (AI-Najashi).<br />
”Ja’afar ibn Abi Talib, who was the leader of the Believers,<br />
answered: ”We are a group of people who never bow<br />
except to Allah.”<br />
The history of Islam is full of anecdotes that show<br />
the early Muslims to be excellent in morals, and superb<br />
and courageous in action. These have been recorded by<br />
members of the first Islamic generation, for example, AIKhubaib<br />
ibn ’Udai, Zaid ibn Ad-Dathanah, Rub’ie ibn<br />
’Amir, Masaab ibn ’Urnair, Said ibn jubair, and Said ibn<br />
Musaiyid. We should be well advised to study their history,<br />
scrutinize their life stories and follow in their footsteps.<br />
Movement-Oriented A person who lives for Islam will<br />
work with other like-minded people. Believing in Islam<br />
means to work in solidarity with others in an activist movement,<br />
directed toward teaching the truths of Islam, enjoining<br />
right and combatting wrong, establishing the Islamic<br />
personality and family, and establishing the Islamic community<br />
with Islamic governance. Allah, the almighty, has<br />
said:<br />
[Allah to Moses], ”We will certainly strengthen your<br />
arm through your brother.” [Qur’an 28:35]<br />
Help one another in righteousness and piety, but help<br />
not one another in sin and rancor. [Qur’an 5:2]<br />
The Prophet (s) said:<br />
A Muslim working with another Muslim may be compared<br />
to a strong building. Everybody is reinforcing each<br />
other.<br />
Allah’s help is with the community. Verily, a fox will<br />
eat only a sheep who is away from the community.<br />
You must be with the Muslim community and their<br />
leader.<br />
Togetherness is a blessing and disunity is destruction.<br />
2.2. The Compulsory Nature of Islamic Activism<br />
Working for Islam means to reform oneself so that one’s<br />
life teaches others true belief and Islamic behaviour. Working<br />
for Islam equally means to form a society that is committed<br />
to the Islamic way of thinking and Islamic way of<br />
life, which means to form a government that implements<br />
principles of justice embodied in the shariah to guard the<br />
rights of every person and community, and establish truth<br />
and justice, and at the same time call others toward Islam<br />
- truth, peace, and justice.<br />
These three responsibilities are obligatory not merely<br />
for the entire Muslim community but for every individual<br />
Muslim until we have established a system of governance<br />
adequate to the task. Until the nations of the world have<br />
functionally Islamic governments, every individual who is<br />
17<br />
careless or lazy in working for Islam is sinful. These sins of<br />
omission will not be forgiven until they take a quick action<br />
to carry out all their responsibilities and Islamic duties.<br />
These responsibilities to change both oneself and the<br />
world are binding in principle, in law, in self-defense, in<br />
community and as a sacred obligation of jihad, as explained<br />
in this chapter.<br />
2.2.1. In Principle<br />
Working for Islam is a must in principle because it is<br />
the core of all the duties that have been prescribed by<br />
Allah for all human beings. This responsibility to work<br />
for Islam was enjoined by all prophets and messengers, for<br />
all human beings until the Day of Judgement. Allah, the<br />
Almighty, has said:<br />
I swear by the declining day, that man is in loss, except<br />
those who have faith and do righteous deeds and counsel<br />
one another to follow the truth and counsel one another to<br />
be steadfast. [Qur’an 103:1-3]<br />
On those who conceal the clear (signs) We have sew<br />
down our guidance, after We have it clear for the people<br />
in the Book, shall be the curse of Allah, and the curse of<br />
those entitled to curse them. [Qur’an 2:159]<br />
In the sunnah of the Prophet (s) there are many narrations<br />
directly related to teaching the truth (dawah), enjoining<br />
the good, and forbidding evil. The Messenger of<br />
Allah (s) said:<br />
Whosoever of you sees in evil action, let him change it<br />
with his hind, and if he is not able to do so, then with his<br />
tongue; and it-he is not able to do so. then with his bean<br />
- and that is the weakest of faith.[Trimidhi]<br />
Oh mankind, verily Allah says: ”Order them to do<br />
good and forbid them from doing evil [while they still have<br />
a chance] before (the time) when they will pray to Me but<br />
I will not answer, they will ask (something) from Me but I<br />
will refuse, and they will seek My help but I will not help<br />
them.<br />
2.2.2. By Law<br />
Working for Islam is a must from the Islamic point of<br />
view because the existing political and economic system<br />
and manmade laws operate functionally to deny the wisdom<br />
of Allah on earth. This denial makes it compulsory<br />
for every Muslim to establish 2 functionally Islamic society<br />
in every country on earth and to restore the Islamic way of<br />
life taught by 211 the prophets. It is also every Muslim’s<br />
responsibility to remove all impediments to the worship of<br />
Allah alone, by every human being in belief, behavior and<br />
social life. Allah, the Almighty, has said.<br />
By your Lord, they can have no (real) faith, until they<br />
make you judge in all disputes between them. and find in<br />
their souls no resistance against your decisions, but accept<br />
them with the fullest conviction. [Qur’an 4:65]<br />
In whatever you disagree among yourselves, the decision<br />
is with Allah. [Say therefore] ”Such is Allah, my Sustainer;<br />
in Him I trust and to Him I turn.” [Qur’an 42:10]<br />
If any do fail to judge by (the light of) what Allah has<br />
revealed, they are (no better than) unbelievers. [Qur’an<br />
5:44]<br />
If any do fail to judge by (the light of ) what Allah has<br />
revealed, they are (no better than) wrong-doers. [Qur’an<br />
5:45]<br />
If any do fail to judge by (the light of) what Allah<br />
has revealed, they are (no better than) those who rebel.<br />
[Qur’an 5:47]<br />
Since transforming every society into a functionally Islamic<br />
community and governing in accordance with the<br />
law of Allah, the Almighty, is a must, therefore every effort<br />
to accomplish these goals, according to the shari’ah is<br />
also a must. Whenever the accomplishment of something<br />
compulsory is impossible without accomplishing something<br />
else, that prior accomplishment is also compulsory.<br />
The Muslim countries have been ruled by manmade<br />
systems with elements borrowed from the Romans, Chinese,<br />
French and many other cultures. The economic systems<br />
in these countries are capitalistic, Socialist, or a mixture<br />
of both evils. This overlay of secular cultures makes it<br />
all the more necessary to abolish all traces of such primitive<br />
life (labiliyya) and to reinforce the understanding and<br />
application of the eternal and universal Islamic din until it<br />
becomes the ruling power throughout the world.<br />
The application of the Islamic din depends on the<br />
elected ruler or leader. Their election depends on the existence<br />
of Islamic power, which alone can implement the<br />
shari’ab as an Islamic system throughout society in every<br />
field, whether it be economics, family law, war, disarmament,<br />
or international law, or any other, throughout the<br />
world.<br />
2.2.3. Self-Defense<br />
Working for Islam is necessary to counter attacks from<br />
every materialistic ideology and system that threatens the<br />
existence of Islam as a global paradigm of thought and system<br />
of life. In most of the Muslim world today it is necessary<br />
in self-defense to form an Islamic opposition. From a<br />
legal (fiqhi) perspective such an organized effort is obligatory.<br />
Many Muslim countries suffer from the oppression of<br />
non-believing occupiers, such as Palestine, Kashmir, Eritrea,<br />
Cyprus, Bukhara, Samarkand, and many more.<br />
Other Muslim countries suffer from the brutality of an evil<br />
minority, which governs through the iron-fist. In still others,<br />
the Muslims complain of the cruelty inflicted on them<br />
18<br />
because they either are controlled by the left or right wing<br />
or must suffer from bloody wars between the two.<br />
This general situation is so acute because the whole<br />
Muslim ummah or global community is still living in a crisis<br />
of political, economic and social ignorance, oppressed<br />
by overall decadence in values, thought and behavior.<br />
The very extreme of these general and local conditions<br />
proves that Working for Islam is necessary and compulsory<br />
in self-defense against the external machinations of secular<br />
powers and against the collaboration internally between<br />
these enemies and their local puppets. The Qur’an says:<br />
And fight them until there is no more tumult or oppression,<br />
and there prevail justice and faith in Allah. [Qur’an<br />
8:39]<br />
2.2.4. In Community<br />
The responsibility to work for Islam is the personal<br />
duty of every Muslim. As in the case of every Islamic duty<br />
one is rewarded if and only if one fulfills these responsibilities,<br />
and one is punished for neglecting them. Allah, the<br />
Almighty, has said:<br />
Every soul will be (held) in pledge for its deeds. [Qur’an<br />
74:38]<br />
And everyone of them will come to Him singly on the<br />
Day of Judgement. [Qur’an 19:95]<br />
No bearer of burdens shall be made to bear the burden<br />
of another. [Qur’an 6:164]<br />
And if any strive (with might and main), they do so for<br />
their own soul. [Qur’an 29:6]<br />
Allah has made every human being responsible to sacrifice<br />
according to his own ability and limitations in organizing<br />
and developing one’s life, on condition that one has<br />
reached adulthood, and is of sound mind and body. Each<br />
of these persons, with responsibilities appointed by Allah,<br />
are to form a society and operate as a living cell so that<br />
each person will participate in building the truth and see<br />
this as compulsory. Each person in the community then<br />
will give freely of his or her own talents and compete to do<br />
whatever work is needed. From this we see why personal<br />
work for Islam is an Islamic duty.<br />
Just as working for Islam is compulsory for each person,<br />
there is a collective obligation of the community to<br />
act in a movement of solidarity to carry out its specific<br />
responsibilities. This collective obligation is necessary for<br />
a number of reasons.<br />
The responsibilities and duties to work for Islam are<br />
too big a load for one person, because the goal is to obliterate<br />
jahiliyyah (evil ways and systems of thought and life)<br />
down to their roots and replace it with the truth of Divine<br />
Revelation. This requires sacrifice, energy and power in<br />
amounts not possible from one man alone, even working to<br />
his fullest capacity and with maximum effort and unlimited<br />
readiness to suffer. This obligation can be carried out only<br />
by an organization that has a certain level of consciousness<br />
and organizational capability to confront the existing<br />
evil systems. The fact that working for Islam is a collective<br />
responsibility is borne out by the life-example of the<br />
Prophet (s) and his companions, who faced the jahiliyyah<br />
together in order to form a society that could follow the<br />
teaching of Islam and preserve the Islamic way of life. The<br />
life-example of the Prophet (s) proves that he did not operate<br />
as an individual, but rather realized the importance of<br />
forming a community right at the beginning. He chose the<br />
right people to form the new community, and he trained<br />
each member of the community until he or she was strong<br />
and able to carry out the process of transformation. The<br />
path of Islamic activism is full of hardship because, as Syed<br />
Qutb said, the devil is at work wherever good Muslims are<br />
active. The challenges are great and there are so many evil<br />
powers always looking to use them as weapons to destroy<br />
Islam and its followers. These challenges, make it necessary<br />
to build an organized movement of sufficient size and<br />
quality to carry on every level of Islamic work and also<br />
to handle unexpected situations and needs. The Qur’an<br />
and hadith of the Messenger of Allah (s), demonstrated<br />
repeatedly that working for Islam in an organized group is<br />
a necessity. Allah, the Almighty, has said: Help one another<br />
in righteousness and piety, but help not one another<br />
in sin and rancor. [Qur’an 5:5]<br />
2.2.5. In Jihad<br />
Those who work for Islam must be clear that they need<br />
Islam more than anyone else. They should be aware that<br />
when they are working, striving, and fighting for Islam this<br />
is an opportunity granted by Allah to purify their souls so<br />
that they will be rewarded by Allah in the Hereafter. On<br />
the Day of judgement, all eyes will be cast down and their<br />
souls will be in utter humiliation because of their fear of<br />
punishment.<br />
Those who continue working for Islam are the ones who<br />
will prosper and those who withdraw will be in terrible loss.<br />
Allah, the Almighty, has said:<br />
For Allah does not stand in need of anything in all the<br />
worlds. [Qur’an 29:6]<br />
If you turn back (from the path), He will substitute in<br />
your stead another people; then they will not be like you!<br />
[Qur’an 47:38]<br />
Muslims should realize that their self-value derives only<br />
from Islam, without which they are like animals or worse.<br />
They must know however, that true honor can never be<br />
achieved unless they continue actively to involve themselves<br />
in the Islamic Movement. Those who remain in<br />
isolation will be in the Hellfire. Those who join in the<br />
Islamic Movement are joining themselves with an honorable<br />
people. They are the enlightened, the -prophets- and<br />
the -martyrs- on whom Allah, the Almighty, bestows his<br />
19<br />
blessings. How fortunate they are!<br />
They should know that constancy in solidarity with<br />
the community is a condition for being steadfast. As the<br />
Prophet (s) said:<br />
Verily, a wolf will eat a sheep only when it is separated<br />
(from the herd).<br />
Living in a decadent society is like being lost on a dark<br />
night. Those who are far from the advice of their companions<br />
in Islam and from encouragement to be patient<br />
and virtuous cannot survive in jahili society without being<br />
influenced by the surrounding filth. In the Qur’an, we<br />
read:<br />
But teach (your message), for teaching benefits the believers.<br />
[Qur’an 51:55]<br />
I swear by the declining day, that man is in loss, except<br />
those who have faith and do righteous deeds and counsel<br />
on another to follow the truth and to be steadfast. [Qur’an<br />
103:1-3]<br />
Therefore, Muslims are required always to live within<br />
the faithful family of Islam and to unite in the ummah<br />
under the banner of Islam, to transform the world. Allah,<br />
the Almighty, has said:<br />
And keep your soul content with those who call on their<br />
Lord morning and evening, seeking His presence: and let<br />
not your eyes pass beyond them, seeking the pomp and<br />
glitter of this life; and pay no heed to one whose heart We<br />
have permitted to neglect the remembrance of Us, one who<br />
follows his won desires, and whose [transgressions] have<br />
gone beyond all bounds. [Qur’an 18:28]<br />
Muslims should never forget that they are striving for<br />
Allah, the Almighty. The path to Allah is long and full of<br />
hardship. Heaven is surrounded by unpleasant obstacles<br />
while Hell is surrounded by everything pleasant to human<br />
lusts.<br />
The road is difficult for those who fear to lose their<br />
money and secure future. The end of the road can never<br />
be reached by those who love leisure and pleasure, by the<br />
narrow minded and weak, the impatient and stingy, the arrogant<br />
and lazy, and by those who refuse to support what<br />
has been decided in the community.<br />
The path of Islamic activism purifies and liberates a<br />
person and teaches one to he strong. It is a path of blessings<br />
and honor, but it requires patience and endurance,<br />
honesty, and sincerity. A path with these characteristics<br />
can be traversed only by those who are confident of the<br />
truth, and who rely on Allah always and everywhere. Allah,<br />
the Almighty, has said:<br />
And if anyone puts his trust in Allah, sufficient is [Allah]<br />
for him. For Allah will surely accomplish His purpose;<br />
verily all things has Allah appointed in due proportion.<br />
[Qur’an 65:3]<br />
Then anyone who violates his oath, does so to the<br />
harm of his own soul, and if anyone fulfills what he has<br />
covenanted with Allah, Allah will soon grant him a great<br />
reward. [Qur’an 49:10]<br />
2.3. The Islamic Movement: Its Task,<br />
Characteristics and Tools<br />
The duty of the Islamic movement is to help people submit<br />
to Allah as individuals and groups by working for the<br />
establishment of an Islamic community deriving its rules<br />
and teachings from the book of Allah and His Prophets’<br />
sunnah.<br />
2.3.1. The General Task: Universal Outreach<br />
The Islamic movement is a universal organization that<br />
reaches out to encompass the workers in the Islamic field<br />
all over the world. This outreach is a precondition for success<br />
in conveying purely and clearly the Islamic message in<br />
ways relevant to the needs of the present time. This outreach<br />
is designed to call people to Islam, strengthen their<br />
belief in it, and organize them to work and to wage jihad<br />
in its cause.<br />
In order to establish Islam functionally in the world the<br />
Islamic movement must strive against the thoughts and<br />
philosophies left over from colonialism, whether of European<br />
socialism or American capitalism, until the Ummah<br />
or Muslim community can recover its independence and<br />
genuine identity. From the very inception, the Islamic<br />
movement has been almost obsessed with the need to purify<br />
Islam from the garbage of unlawful innovations and<br />
superstitions, and to introduce it to the people of the world<br />
in a pure form worthy of its excellence and greatness above<br />
all contending religions and ideologies.<br />
The Islamic Movement is rooted in some basic principles,<br />
namely, that:<br />
Islamic teachings and rules are comprehensive and designed<br />
by Allah to govern the affairs of man at all levels<br />
of community, from the family to the whole of the human<br />
race. The fundamental theme of Islam throughout history<br />
has been -there is no god but Allah,- which means, that Allah<br />
alone is Divine and Sovereign. Islam alone can provide<br />
the power for Muslims to liberate oppressed peoples from<br />
The control of those who worship the false gods of modernist<br />
and postmodernist cultures, namely, from taghut,<br />
so that these false gods will no longer be in a position to<br />
persecute or put obstacles in the way of sincere people and<br />
so all religion will be exclusively for Allah. The adoption<br />
and adaptation of capitalist, socialist, communist or other<br />
manmade systems, either in whole or in part, constitutes<br />
a denial of Islam and disbelief in Allah the Lord of the<br />
worlds. Such adoption and adaptation diverts Muslims<br />
into unguided, haphazard, and wasteful efforts. Allah, the<br />
Almighty, has said: If anyone desires a religion other than<br />
Islam (submission to Allah), never will it be accepted of<br />
him and in the hereafter he will be in the ranks of those<br />
20<br />
who have lost (all spiritual good). [Qur’an 3:85]<br />
Hasan AI-Banna summarized the Islamic movement’s<br />
general task of universal outreach as follows:<br />
Our task in general is to stand against the flood of<br />
modernist civilization overflowing from the swamp of materialistic<br />
and sinful desires. This flood has swept the<br />
Muslim nation away from the Prophet’s leadership and<br />
Qur’anic guidance and deprived the world of its guiding<br />
light. Western secularism moved into a Muslim world already<br />
estranged from its Qur’anic roots, and delayed its<br />
advancement for centuries, and will continue to do so until<br />
we drive it from our lands. Moreover, we will not stop at<br />
this point, but will pursue this evil force to its own lands,<br />
invade its Western heartland, and struggle to overcome<br />
it until all the world shouts by the name of the Prophet<br />
and the teachings of Islam spread throughout the world.<br />
Only then will Muslims achieve their fundamental goal,<br />
and there will be no more ”persecution” and all religion<br />
will be exclusively for Allah. ”With Allah is the decision,<br />
in the past and in the future: on that day shall the believers<br />
rejoice.” [Qur’an 30:4]<br />
Within this general task, there are many specific duties.<br />
The Islamic movement must develop:<br />
1. Internal governance sensitive to Allah’s command:<br />
Judge between them by what Allah has revealed, and<br />
follow not their vain desires, but beware of them lest<br />
they beguile you from any of the (teachings) that<br />
Allah has sent down to you. [Qur’an 5:52]<br />
2. Public relations designed to carry out Allah’s injunctions:<br />
Thus have We made you a community justly balanced,<br />
that you may be a witness over the nations.<br />
[Qur’an 2:143]<br />
3. A practical judicial system reflecting the authority of<br />
Islamic law:<br />
By your Lord, they can have no (real) Faith, until<br />
they make you judge in all disputes between them,<br />
and find in their souls no resistance against your decisions,<br />
but accept them with the fullest conviction.<br />
[Qur’an 4:65]<br />
4. Military defense adequate to all demands in accordance<br />
with Allah’s decree: ”Go forth, (whether<br />
equipped) lightly or heavily, and strive and struggle<br />
with your goods and your persons in the cause of Allah.<br />
This is best for you, if You (only) knew. [Qur’an<br />
9:41]<br />
5. Economic institutions and policies designed to foster<br />
the production of wealth through broadly-based private<br />
ownership with proper regulation to avoid concentration<br />
of either economic or political power.<br />
To those of weak judgement do not entrust your<br />
property which Allah has made a means of support<br />
for you. [Qur’an 4:5]<br />
6. Educational and cultural infrastructure designed to<br />
overcome ignorance and evil and to carry out the instruction<br />
of Allah in the first revealed verse of the<br />
Qur’an:<br />
Proclaim! (or read!) in the name of your Lord and<br />
Cherisher who created. [Qur’an 96:1]<br />
7. Family values to shape and train the character of<br />
young boys and girls, in accordance with the saying<br />
of Allah, ”O you who believe! Save yourself and your<br />
families from a fire whose fuel is men and stones.”<br />
[Qur’an 66:6]<br />
8. Spiritual encouragement so that in their private lives<br />
people find it easier to advance in wisdom and in<br />
peace of soul: ”Truly he succeeds who purifies it.”<br />
[Qur’an91:9]<br />
9. Personal empowerment to bring alive as civil activists<br />
every person in society, either as a leader or follower,<br />
according to the saying of Allah, ”But seek, with the<br />
(wealth) which Allah has bestowed on you, the home<br />
of the Hereafter, and do not forget your just enjoyment<br />
of this world; but do good as Allah has been<br />
good to you and avoid occasions for mischief in the<br />
land.” [Qur’an 28:77]<br />
10. Leadership at all levels of human community, in the<br />
family, neighbourhood, national government and international<br />
institutions, in order to bring together<br />
Muslims everywhere so they can excel again in all<br />
endeavors, and recover the flag of jihad and call<br />
mankind to Allah and the good news of His Revelation.<br />
2.3.2. General Characteristics<br />
The most important features or characteristics of the<br />
Islamic movement required for it to carry out this general<br />
task are the following five:<br />
1. Guided by Allah<br />
The direction and methods of the movement must<br />
come from the eternal religion of Allah. The movement<br />
serves Allah and not its members, in accordance<br />
with Allah’s teaching:<br />
Say: Truly, my prayer and my service of sacrifice, my<br />
life and death, are all for Allah, the Cherisher of the<br />
worlds. [Qur’an 6:162]<br />
The Islamic movement is not a political party that<br />
aims to gain or achieve some vested interest or power<br />
21<br />
as is common in ordinary parties. Its leaders are expected<br />
to obey only the commands of Allah.<br />
2. Self Motivated<br />
This movement originates in the reality of Islam and<br />
not in reaction to or as an outgrowth of the socialism<br />
and capitalism of the secular West. The movement<br />
calls only to Islam, the true religion, which fact is its<br />
major source of power.<br />
3. Growth-oriented<br />
The Islamic movement is designed to liberate man in<br />
dynamic change, not enslave him in efforts to stabilize<br />
and control the world, as do most utopian movements,<br />
including capitalism, in the West. Unlike<br />
these secular manmade systems, the Islamic movement<br />
addresses human needs and everyday problems<br />
from the spiritual and moral perspective of Revelation.<br />
It stands in awe of the universe, every aspect of<br />
which is merely a sign from its Creator and therefore<br />
promotes science and technology not to gain power<br />
or to register new discoveries but to learn more about<br />
the greatness of Allah.<br />
The Islamic movement promotes progress in developing<br />
improved tools of economic growth because Muslims<br />
are enjoined to multiply the bounties of Allah<br />
and benefit from all that is good. This is the essential<br />
meaning of the Prophet’s saying:<br />
”Take wisdom from whatever container it comes<br />
from,” and ”Knowledge is what every Muslim should<br />
seek the most; wherever he finds it, he is the one who<br />
most deserves it.”<br />
4. Comprehensive and balanced<br />
The Islamic movement addresses all the needs of man<br />
in proper balance. Therefore it is referred to as:<br />
(a) Salafi da’wah, because it derives from the pure<br />
sources of Islam, the Qur’an and sunnah;<br />
(b) The Sunni way, because it works to revive the<br />
sunnah of the Prophet (s) in its members and<br />
in every human community;<br />
(c) The Rabbani covenant, because it teaches that<br />
a pure and clean heart and a close relationship<br />
with Allah are the basis and origin of all good;<br />
and<br />
(d) The Political movement, because it tries to address<br />
everyone’s needs by changing both public<br />
policy and the institutions of society from which<br />
such policy issues.<br />
5. Unity in diversity<br />
The Islamic movement recognizes the legitimacy of<br />
different positions on public issues, but it requires<br />
unity in basic principles (usul), and seeks to bring<br />
people together around the fundamentals of Islam.<br />
In the words of Imam Hasan AI-Banna:<br />
We are not a political party, although politics in accordance<br />
with Islam is deeply rooted in our ideas;<br />
and we are not a welfare organization nor a sports<br />
team, although welfare and sports are part of our<br />
method; we are not any of these because these are<br />
all forms, techniques, or means designed for specific<br />
objectives and for a limited period of time.<br />
We are, however, an idea and a creed, a system and<br />
a syllabus, which is why we are not bounded by a<br />
place or a group of people and can never be until<br />
the Day of judgement, because we are the system of<br />
Allah and the way of His Prophet (s).<br />
We are the followers of the Companions of the Messenger<br />
of Allah, and the Raisers of his flag as they<br />
raised it, and like them, popularizers of his way, and<br />
the memorizers of the Qur’an as they memorized it,<br />
and the preachers of his da’wah as they preached it,<br />
which is why we are a mercy for mankind.<br />
2.3.3. Organizational Characteristics<br />
In addition to these five general characteristics, the<br />
Islamic movement must have seven specifically organizational<br />
ones, namely:<br />
1. Freedom from the special Interests of politicians and<br />
powerbrokers, especially those who dominate the<br />
government.<br />
This organizational independence, however, does not<br />
preclude members of the movement from holding political<br />
and appointive office as long as they work to<br />
protect the movement from harm and to secure its<br />
sincerity of intent and purity of action.<br />
2. Gradualism In both thoughts and action, because the<br />
road to success is hard and long and the goals are ambitious<br />
and grandiose. The gradualist strategy pursues<br />
these goals through a tactic of incremental steps,<br />
each planned to build on the previous step in a carefully<br />
optimized time frame. Imam Hasan al-Banna<br />
in his Instructional Discourse divided the stages of<br />
da’wabinto three stages:<br />
(a) Introductory: Disseminating concepts and ideas<br />
among the people through oratory and writing,<br />
civic action and other practical methods.<br />
22<br />
(b) Preparatory: Identifying good and reliable<br />
cadre to bear the burden of initiating and sustaining<br />
jihad. This is a period of building wisdom<br />
among the leaders and military discipline<br />
among the recruits. At this stage no one will be<br />
admitted to the movement except those willing<br />
to carry out their responsibilities in full obedience.<br />
(c) Execution: The stage of relentless combat and<br />
constant effort to achieve the goals. This stage<br />
will weed out all but the most honest and sincere,<br />
both in their own commitment and in their<br />
obedience to the chain of command. [Risalat<br />
Ta’alim (Arabic)]<br />
(d) Low-Profile, with a maximum of productive action<br />
and a minimum of publicity, in order to:<br />
i. Purify action from the desire to he seen and<br />
praised by others;<br />
ii. Save energy and time for productive and<br />
constructive action; and<br />
iii. Ensure the safety of the movement and its<br />
members. The Prophet Muhammad (s)<br />
said, ”Seek secrecy in what you do.”<br />
3. Strategic orientation for long-range victory. The<br />
hugeness of the task ensures that the way will be long<br />
and hard, so the people working in this field should<br />
prepare themselves both mentally and physically to<br />
meet any hardship and to sacrifice:<br />
Do men think that they will be left alone on saying<br />
we believe, and that they will not be tested? We did<br />
test those before you, and Allah will certainly know<br />
those who are true from those who are false. [Qur’an<br />
29:1-3]<br />
Members of the Islamic Movement should adopt and<br />
follow a long term plan so they do not lose the way<br />
or seek the fruit before it is ripe. This requires a<br />
full understanding that securing power for an Islamic<br />
government is a means for a larger goal, so when<br />
they gain power they will thank Allah and not retreat<br />
from their task out of fear. ”There is no help<br />
except from Allah;” [Qur’an 2:26] and ”You will not,<br />
except as Allah wishes.” [Qur’an 76:30]<br />
If someone retorts: ”But crooks and tools of outside<br />
interests gain power a lot faster and more easily,”<br />
then reply that the two ways are different and<br />
the Islamic Movement will accept power only clearly<br />
gained in justice. If it would accept the reins of<br />
power held by others, it would have gained a false<br />
and fraudulent power, as have so man others. ”Now<br />
then, for that (reason) call (them to the faith) and<br />
stand steadfast as you are commanded, and do not<br />
follow their vain desires.”<br />
4. Openness in work but secrecy of organization. One<br />
may not work for Islam in secret, or through a front,<br />
and still claim to exhibit wisdom. The message of<br />
Islam should be broadcast from the housetops and<br />
the truth should be witnessed always and everywhere<br />
Those who hide the truth through silence are not<br />
merely dumb but evil. ”Whoever sees a wrong-doing<br />
should change it by his hand; if he cannot, by his<br />
tongue; and if he still cannot then by his heart, arid<br />
that is the weakest of faith.” Those who call to Allah<br />
should proclaim the truth at their place of work and<br />
to all around them in every way. Allah says, ”Invite<br />
(all) to the way of your Lord with wisdom and<br />
beautiful preaching.” [Qur’an 16:125]<br />
This does not mean, however, that the Islamic Movement<br />
should reveal all its strategies, plans, and organization,<br />
because this would be foolhardy and put<br />
the movement and its members in danger. The slogan<br />
should be, ”Work in public but organize in secret”<br />
which accords with the Prophet saying. ”Seek<br />
secrecy in what you do”, and ”War is dissimulation.”<br />
5. Psychological independence. There has been much<br />
discussion about the -feeling of isolation- that Syed<br />
Qutb called for when he said, ”There should be a<br />
group that takes the lead and proceeds alone in the<br />
middle of the ignorance found everywhere on this<br />
earth. This group should be in this environment but<br />
isolated from it, and should not be of this environment,<br />
though it should communicate with it.”<br />
The concept of isolation referred to here by Syed<br />
Qutb is distinct from the nihilist or rejectionist isolation<br />
of many non-Muslim groups. Muslims are isolationist<br />
in the sense of psychological independence,<br />
based on the manner and behavior, and of their feelings.<br />
This is what the Prophet (s) called when he<br />
warned: ”Do not be a follower who says, I am with<br />
the people right or wrong. But maintain disciplined<br />
behavior, so when people do good, you should too<br />
and when they do evil, you should avoid it.”<br />
Effective work, movement, and da’wah are not possible<br />
if one is physically isolated and out of contact<br />
with people, because one must be sensitive to<br />
their differences and tailor one’s approach accordingly.<br />
These people who are committed to Islam as<br />
individuals but reject the duties of work in a movement<br />
must be approached in one way. Some people<br />
are open enemies of Allah and his Messenger<br />
(s), both as individuals and as members and leaders<br />
of non-believing groups. Other people are proud<br />
of being Muslims but do not live in accordance with<br />
23<br />
its rules. These people, who represent the majority<br />
of Muslims today, cannot be equated with those<br />
who deny non-believers. Each group must be addressed<br />
distinctly and with the personal knowledge<br />
that comes from communication.<br />
The message of the callers to Islam should be adapted<br />
to the closeness or distance of the potential audience,<br />
to their acceptance or rejection of the message, and<br />
to their friendship or enmity. Some of them need<br />
awareness, education, and guidance, while others, as<br />
a last resort in self-defense need the sword. This flexibility<br />
requires the callers to Islam to remain in contact<br />
with all elements of society. This relationship<br />
should aim at affecting the others positively, while<br />
avoiding a negative effect on oneself, and at purifying<br />
their lives while avoiding contamination of one’s<br />
own. The Prophet (s) said: ”The patience of one of<br />
you (in jihad) is better than (worshipping) Allah for<br />
60 years.”<br />
6. Moral consistency. For a Muslim the end never justifies<br />
the means, no matter what the aggravation.<br />
Unlike most un-Islamic movements, who are machiavellian<br />
even in excess of their own teachings, the<br />
Islamic movement must be principled in action.<br />
How many people or parties actually practice what<br />
they preach in either the executive or legislative<br />
branch of government? These people and parties do<br />
not subscribe to a spiritual and moral creed designed<br />
to protect them from the hypocrisy endemic in the<br />
arena of politics.<br />
The interests of secular people change and are translated<br />
into party programs, and these are often directed<br />
toward the self-serving advantage of party<br />
leaders, who sell out the interests of their supporters<br />
for personal gain. They gain power easily and manipulate<br />
it even more easily, because they are not constrained<br />
by religious and moral obligations. Instead<br />
they have objectives, strategies, and tactics that need<br />
to he accomplished regardless of the cost.<br />
In contrast, the laborers in the Islamic field do not<br />
work for themselves. They are bound by religious<br />
and moral obligations, which they cannot discard or<br />
change.<br />
This characteristic of moral consistency is based on<br />
five principles:<br />
(a) Islamic work must not be contaminated by any<br />
un-Islamic means in pursuit of its goals and objectives,<br />
even if these means be only words or<br />
slogans.<br />
Say: The truth’s from your Lord, let him who<br />
will, believe and let him who will, reject it.<br />
[Qur’an 18:29]<br />
(b) Islam is an organic whole and cannot be partitioned.<br />
Giving up part of it is abandoning it all.<br />
We need only recall the story of the ”Quraish”<br />
when they made the Prophet Muhammad (s) a<br />
very tempting offer in return for giving up part<br />
of the Message of Islam. Allah instructed him<br />
to refuse their offer:<br />
Say O you who reject faith, I do not worship<br />
what you worship, nor do you worship what I<br />
worship, and I will not worship what you have<br />
ever worshipped, nor will you ever worship what<br />
I worship. To you be your way, and to me mine.<br />
[Qur’an 109:1-6]<br />
(c) Islam requires major effort and sacrifice. The<br />
magicians of Pharaoh when they learned the<br />
truth of Allah from the Prophet Moses (s), ignored<br />
Pharaoh’s threats and replied, ”Never<br />
shall we regard you as more than our Creator.<br />
So decree whatever you desire to decree: for you<br />
can only decree [what concerns] the life of this<br />
world.” [Qur’an 20:72]<br />
When the Prophet (s) was offered kingship,<br />
honor, and money merely to slacken somewhat<br />
his efforts and compromise his message, he refused<br />
and said,<br />
By Allah, if they put the sun in my right hand<br />
and the moon in my left to abandon this call, I<br />
will not until Allah gives victory to this din or<br />
I die struggling for it.<br />
(d) Righteous people must on guard against those<br />
of the non-Muslims who have a disease in their<br />
hearts, and the righteous must remain close to<br />
Allah so they cannot be easily swayed or accept<br />
the imposition of unsuitable solutions. ”And<br />
this (He commands), judge between them by<br />
what Allah has revealed, and do not follow their<br />
vain desires, but beware of them lest they beguile<br />
you from any of the (teaching) that Allah<br />
has sent down to you. And if they turn away,<br />
be assured that for some of their crimes it is<br />
Allah’s purpose to punish them, for truly most<br />
men are rebellious.” [Qur’an 5:52]<br />
When Ka’ab ibn Malik, the famous companion<br />
of the Prophet, was approached by an envoy<br />
of the king of Gassan with a letter from the<br />
king which read, ”We know that your friend is<br />
treating you harshly (the Prophet had ordered<br />
a social boycott of the three Muslims, including<br />
Ka’ab ibn Malik, for failing to join the expedition<br />
of Tabuk, and no one was allowed to speak<br />
to them), so come and join us.” When Ka’ab<br />
24<br />
read it, he said, ”this is another test.” He realized<br />
that his situation had reached the point<br />
where a non-believer wanted to convert him to<br />
fight the Prophet, so he burned the letter.<br />
(e) Truth and knowledge of right and wrong can he<br />
known only from revelation, not from human<br />
reason alone, and one must accept divinely revealed<br />
truth even it be against one’s will. From<br />
the Islamic perspective, dishonesty and cheating<br />
people, regardless of how small the matter,<br />
is hypocrisy. The Prophet (s) said ”The one<br />
who pleases people by making Allah angry will<br />
receive from Allah only humiliation, and the one<br />
who pleases Allah but thereby makes people angry<br />
will receive from Allah only honor.” The<br />
Prophet also said, ”Do not be a follower who<br />
says, I am with the people, right or wrong. But<br />
maintain disciplined behavior, so when people<br />
do good, you should too, and when they do evil,<br />
you should avoid it.”<br />
2.3.4. Tools of the Islamic Movement<br />
Imam Hasan AI-Banna proclaimed that, ”Our tools are<br />
the tools of our righteous predecessors, and our weapons<br />
are what our guide and leader, the Prophet Muhammad<br />
(s) and his companions used to address the world, despite<br />
their limited number and resources. These tools are five.<br />
1. A deep internal love of Allah and belief in His help<br />
and His support. ”If Allah helps you, none can overcome<br />
you: if He forsakes you, who is there, after that,<br />
that can help you? [Qur’an 3:160]<br />
2. A conviction that the Qur’an is a universally applicable<br />
guide. ”There has come to you from Allah a<br />
(new) light and a perspicuous Book, with which Allah<br />
guides all who seek His good pleasure to ways of<br />
peace and safety.” [Qur’an 5:17-18]<br />
3. A strong sense of the rights and importance of brotherhood.<br />
”The believers are but a single brotherhood.”<br />
[Qur’an 49: 10]<br />
4. Firm reliance on Allah’s love and justice. -Because<br />
all their sufferings and efforts were reckoned to their<br />
credit as deeds of righteousness whether they suffered<br />
thirst, or fatigue, or hunger, in the cause of Allah, or<br />
took any steps that angered or confounded the unbelievers,<br />
or sustained any injury whatever from an<br />
enemy; for Allah does not fail to give a just reward<br />
to those who do good. [Qur’an 9:120]<br />
5. Supreme confidence that they are among those chosen<br />
by Allah to bring truth, justice, and peace to the<br />
world.<br />
Our predecessors in faith heard the call to Allah, so<br />
they believed, and we pray that Allah will make this<br />
faith beloved to us as it was to them because this<br />
love of Allah and Islam is our faith. Our faith is our<br />
greatest strength and our most powerful tool; it is<br />
also the source of the second most powerful instrument<br />
of the Islamic movement, which is jihad. The<br />
companions of the Prophet (s) knew that Islam prevails<br />
only through the sacrifice of self and wealth in<br />
jihad, and they were right.<br />
They heard the call of Allah, ”Say, if your fathers,<br />
your sons, your brothers, your mates, or your kindred,<br />
or the wealth that you have gained in commerce<br />
and fear to lose, or the dwellings in which you<br />
delight, are dearer to you than Allah or His Messenger,<br />
or striving in His cause, then wait until Allah<br />
brings about His decision, for Allah guides not the<br />
rebellious.” They answered the call and offered everything<br />
willingly, rejoicing in their bargain with Allah<br />
Almighty.<br />
When they fought in the Cause of Allah, they fought<br />
to death. Some donated all their resources, saying we<br />
have kept for our families only Allah and His Messenger,<br />
while others exclaimed while the sword was<br />
readied above their necks, ”Strike on either side. It<br />
makes no difference as long as I die as a Muslim for<br />
the sake of Allah.” As they were committed in battle<br />
and magnanimous in sacrifice, so shall we be.<br />
2.4. Distinguishing the Movement from<br />
Specialized Organizations<br />
Those who join the Islamic movement should do so after<br />
careful study, so that they know how it differs from<br />
all other Islamic organizations, both in goals and methods,<br />
and can distinguish between Islamic and non-Islamic<br />
groups. There are four kinds of organizations with inadequately<br />
universal goals:<br />
First, there are spiritual groups. Most of these groups<br />
stress personal spiritual growth but neglect other essential<br />
aspects of Islam, such as thought, politics, strategic<br />
planning, and work. Such inner-directed groups may become<br />
isolated and unable to understand the environment<br />
in which they live. Therefore they cannot directly influence<br />
or change the environment.<br />
Second, are ecumenical groups. These groups exist<br />
in order to address problems jointly with Christians and<br />
Jews. These groups usually restrict their goals to the limitations<br />
imposed by non-Muslims. Because to that extent,<br />
they are non-Islamic and will give a distorted image of<br />
Islam.<br />
Third, are welfare organizations. These organizations<br />
were formed in order to help those in need of various kinds<br />
25<br />
of help, such as medical, financial, and shelter. Although<br />
they have done a good job in their fields &#8211; these jobs are required<br />
by Islam &#8211; they are restricted in their work to their<br />
goals. These groups cannot be considered as a movement<br />
of reformation, because their goals are not to establish an<br />
Islamic society nor to move forward to the Islamic way of<br />
life.<br />
Fourth, are political movements. They may operate<br />
under the name of Islam, but they rarely base their work<br />
on the Islamic creed or principles. In some situations, these<br />
political movements, without hesitation, violate the principles<br />
of Islam. They justify this by claiming that they<br />
want to exhibit the flexibility of Islam or pursue the general<br />
good of the people. They rely on the non-believers and<br />
on man-made systems of government, and usually focus on<br />
insignificant matters of marginal value.<br />
None of these four groups work for the real and comprehensive<br />
objective of Islam, which is to transform the<br />
jahili society into an Islamic community in order to save<br />
the world from the false gods of modernism rampant in<br />
Western civilization by building the human person, family,<br />
community, and government in the Islamic mold.<br />
The work of all these organizations is deficient and incomplete.<br />
Some of these groups even condemn Islam, although,<br />
they claim to work under the name of Islam. The<br />
compartmentalization of being and action on which these<br />
groups are based give the erroneous impression that Islam<br />
is similarly based on such erroneous premises. This<br />
implies that man-made systems are acceptable, which will<br />
only prolong their life.<br />
Any groups, no matter what their names are, in any<br />
country who work under the name of Islam, with a goal of<br />
preparing or establishing a complete change in all aspects<br />
of society are indeed the right groups to join because all<br />
of their work converges on a single understanding and on<br />
common goals and methods.<br />
Imam Hasan AI-Banna clarified the characteristics of<br />
the group that best works for Islam by saying:<br />
My brothers, you are not a welfare organization, nor<br />
a political party; you are not a limited-goals organization,<br />
but a new spirit that moves in the nerves of people. Your<br />
are the new light that will destroy the darkness of materialism.<br />
You are the voices that echo the message of Prophet<br />
Muhammad (s).<br />
2.5. The Nature of the Commitment<br />
Every member of the Islamic movement must be committed,<br />
if it is to succeed. Commitment goes far beyond<br />
the formalities of filling out a membership form, registering<br />
one’s name, and going back and forth to the headquarters<br />
to attend gatherings; but it has a deeper meaning which<br />
goes beyond formalities. Commitment must be based on<br />
a common philosophy of life, a common creed or aqidah,<br />
common hopes for the future and on coherent blending of<br />
thought, organization, and action.<br />
2.5.1. The Creed (aqida)<br />
The first task of a movement member is to absorb its<br />
aqidah (or ideology). The Islamic Movement, unlike some<br />
organizations, does not accept superficial submission to the<br />
leadership structure, because it would eventually destroy<br />
the organization itself.<br />
Commitment to an Islamic Movement means being a<br />
committed Muslim, that is, to obey all of the commandments<br />
of Allah and hope for His mercy. This type of commitment<br />
can easily survive the death or loss of Movement<br />
leaders because the commitment has always been only to<br />
Allah. Only in this way the Islamic Movement becomes<br />
a permanent movement. Whoever worships Muhammad,<br />
may the blessings and peace of Allah be upon him, he<br />
should know that he is dead, but whoever worships Allah<br />
the Almighty, he should remember that He is alive and will<br />
never die. Allah, the Almighty, says:<br />
Verily those who pledge their allegiance to you do no<br />
less than pledge their allegiance to Allah. The Hand of<br />
Allah is over their hands. Hence anyone who violates his<br />
oath, does so to the harm of his own soul, and if anyone<br />
fulfills whathe has covenanted with Allah, Allah will soon<br />
grant him a great reward. [Qur’an 48:10]<br />
The Islamic Movement rejects any commitment undertaken<br />
only through enthusiasm. This is because Islam is a<br />
way of thought and life that contains a definite understanding<br />
about the universe, mankind, and daily life. Moreover<br />
working for Islam has the goal of establishing an Islamic<br />
way of life in society. This has to be done according to<br />
a clear understanding and careful ’ planning. Therefore<br />
personal change based on faith and knowledge is the first<br />
requirement for committing oneself to an Islamic movement.<br />
This requirement must be thoroughly understood<br />
so that one will never look back once a commitment has<br />
been made to the Movement. Steadfastness in da’wah sufficient<br />
to guarantee one’s permanent commitment to the<br />
Movement and to achieve its goals requires deep understanding<br />
and a true perception of what such commitment<br />
means. Those who fall or quit are those who committed<br />
themselves through enthusiasm or under outside pressure<br />
without understanding the purpose or appreciating the implications<br />
of their commitment.<br />
The Islamic Movement also rejects any commitment<br />
based on self-interest, whereby this commitment is merely<br />
a stepping-stone to gain a particular goal, a material benefit<br />
or access to people.<br />
True commitment encourages surrender and sacrifice,<br />
so that one’s skills and efforts are always at the disposal of<br />
the Movement and Islam. Intention is very important, because<br />
committing oneself to the Islamic Movement is just<br />
26<br />
another name for committing oneself to the cause of Islam<br />
itself. One’s heart and self must be cleansed and purified<br />
from all self-interest. The Prophet (s), said:<br />
Actions are judged only by intention and every man<br />
shall have only what be intended. Thus if one’s migration<br />
was for Allah and His Messenger, one’s migration will be<br />
for Allah and His Messenger, and if one’s migration was<br />
to achieve some worldly benefit or to take some women<br />
in marriage, then ones migration is what he migrated for.<br />
[Bukhari and Muslims]<br />
2.5.2. Common Future<br />
Commitment to the Movement requires also binding<br />
one’s future to the future of the Movement. One’s commitment<br />
must not he limited to a certain period or bounded<br />
by a certain situation, whereby one’s commitment ends<br />
whenever the period expires or the situation changes. This<br />
would rule out any commitment to the Movement when<br />
one is young and single with the idea that one might quit<br />
when one becomes older or gets married or a commitment<br />
when one is poor or in difficulty but with the thought that<br />
one might quit when one becomes rich and has overcome<br />
one’s difficulties; or ”commitment” in time of peace but<br />
not during tribulations or hardship.<br />
Commitment to the Movement must he a lasting one.<br />
Such a commitment ends only when one meets Allah in<br />
the Hereafter. About the early generations of Muslims the<br />
Qur’an says:<br />
There are among men such as say, ”We believe in Allah,”<br />
but when they suffer affliction in the (cause of) Allah,<br />
they treat men’s oppression as if it were the wrath of Allah!<br />
And if help comes (to you) from your Lord, they are<br />
sure to say, ”We have (always) been with you!” Does not<br />
Allah know best all that is in the hearts. of all creation?<br />
And Allah most certainly, knows those who believe and as<br />
certainly those who are hypocrites. [Qur’an 29:10-11]<br />
There are among men some who serve Allah, as it were,<br />
on the verge; if good befalls them, they are therewith well<br />
content, but if a trial comes to them they turn on their<br />
faces; they lose both this world and the Hereafter, which<br />
is a lose for all to see. [Qur’an 22:11]<br />
How many of the Prophets fought (in the cause of Allah)<br />
and with them large bands of godly men? But they<br />
never lost heart if they met disaster in the way of Allah,<br />
nor did they weaken (in will), nor give in. And Allah loves<br />
those who are firm and steadfast. All that they said was,<br />
”Our Lord! forgive us our sins and anything we may have<br />
done that transgressed our duty; establish our feet firmly,<br />
and help us against those that resist Faith.” And Allah<br />
gave them a reward in this world and the excellent reward<br />
of the Hereafter. For Allah loves those who do good.<br />
[Qur’an 3:146-8]<br />
Da’wah demands commitment, work and continuous jihad<br />
with steadfastness, patience, and sacrifice. And all the<br />
votaries of falsehood are always opposed to it. Allah, the<br />
Almighty, says:<br />
And we shall try you until We test those among you<br />
who strive their utmost and persevere in patience, and We<br />
shall try your reported (mettle). [Qur’an 47:31]<br />
Those who are really committed to the Movement can<br />
be distinguished from others by their moral and social behavior,<br />
because they live according to the principles of Islam<br />
in all circumstances and they engage in the work for<br />
Islam only to win the pleasure of their Lord. These characteristics,<br />
however, emerge only through a long process of<br />
purification. Allah, the Almighty, says:<br />
The scum disappears like froth cast out, while that<br />
which is for the good of mankind remains on the earth.<br />
Thus does Allah set forth parables. [Qur’an 13:17]<br />
Tribulations and trials from Allah will distinguish good<br />
from the bad, and will screen and cleanse those who are<br />
qualified for being the true vicegerents (khulafah) of Allah<br />
in this world, which is an exalted status, and no other<br />
creature was found fit to receive. Allah, the Almighty, said:<br />
If a wound has touched you, be sure a similar would<br />
has touched the others. Such days (of varying fortunes)<br />
We give to men and women by turns so that Allah may<br />
know those who believe and may take to Himself from your<br />
ranks martyr-witnesses (to truth). And Allah loves not<br />
those who do wrong. Allah’s object also is to purge those<br />
who are true in faith and to deprive of blessing those who<br />
resist faith. [Qur’an 3:140-1]<br />
Basically, the callers to Islam face two types of temptations.<br />
The first one they face in the form of luxuries,<br />
such as wealth, status, power, and popularity. Allah, the<br />
Almighty, said:<br />
Fair in the eyes of men is the love of things they covet,<br />
women and sons, heaped-up hoards of gold and silver,<br />
horses branded (for blood and excellence), and (wealth) of<br />
cattle and well-tilled land. Such are the possessions of this<br />
world’s life, but nearness to Allah is the best of all goals.<br />
Say, shall I give you glad tidings of things far better than<br />
those? For the God-conscious are Gardens in the presence<br />
of their Lord, with rivers flowing beneath; therein is their<br />
eternal home, with companions pure (and holy), and the<br />
good pleasure of Allah. For in Allah’s sight are (all) His<br />
servants. [Qur’an 3:14-15]<br />
The second one comes to them as adversity and hardship,<br />
threats, pressure, and torture. Many are imprisoned,<br />
tortured, and killed. Their activities are watched,<br />
and their means of livelihood blocked. In these situations,<br />
they must always be patient and steadfast until Allah gives<br />
them victory.<br />
Men said to them, ”a great army is gathering against<br />
you,” and frightened them, but it only increased their faith.<br />
They said, ”for us Allah suffices and He is best disposer<br />
of affairs.” And they returned with grace and bounty from<br />
27<br />
Allah, and no harm ever touched them, for they followed<br />
the good pleasure of Allah, and Allah is the Lord of bounties<br />
unbounded. [Qur’an 3:173-4]<br />
All these trials and temptations are a means of moral<br />
purification and improvement for the Muslim, just as fire<br />
is for rusty irons. Allah, the Almighty, says:<br />
And we test you by evil and by good, by way of trial;<br />
to Us must you return. [Qur’an 21:35]<br />
Imam Hasan AI-Banna says:<br />
I want to make it clear to you that today our da’wah<br />
is still unknown. When people know and understand the<br />
objective of this da’wah, you will be hated and assailed by<br />
them. You will face a lot of difficulties and so you will be<br />
blocked. Only in this situation will you start to follow the<br />
way of true callers to Islam. Now you are unknown. You<br />
are in the stage of preparation to make da’wah and jihad<br />
required by Islam.<br />
People’s ignorance about Islam is one of the obstacles<br />
in your way. For instance, you will find that the so-called<br />
scholars of Islam will look down upon your understanding<br />
of Islam and will not support your jihad. Leaders, powercrazy<br />
people, and the like will never tolerate you. All<br />
kinds of leaders will together attack you and try to control<br />
your work. They will do anything to go against you and to<br />
put out the light of your da’wah. They will spread rumors<br />
about your da’wah by saying that it is deficient, deviant,<br />
and so forth. Allah the Almighty said: ”Their intention is<br />
to extinguish Allah’s light (by blowing) with their mouths,<br />
but Allah will complete (the revelation of) His light even<br />
though the unbelievers may detest (it).” (Qur’an 61:8).<br />
No doubt, you will go through these tests. You will<br />
be apprehended, imprisoned, and exiled. All of your belongings<br />
will be taken, your jobs will be frozen, and your<br />
houses will be invaded. You might face these tribulations<br />
for quite a long period. Allah the Almighty said.. ”Do men<br />
think that they will he left alone on saying, ’we believe,’<br />
and that they will not be tested?” (Qur’an 29:2).<br />
But remember, after all of these tribulations, Allah has<br />
promised to help you and to reward those who strive to do<br />
good. Allah the Almighty said: ”O you who believe shall<br />
I lead you to a bargain that will save you from a grievous<br />
penalty? That you believe in Allah and His Messenger and<br />
that you strive (your utmost) in the cause of Allah with<br />
your property and your persons, that will be the best for<br />
you if you but knew. He will forgive you your sins and<br />
admit you to Gardens beneath which rivers flow and to<br />
beautiful mansions in Gardens of Eternity; that is indeed<br />
the supreme achievement. And another (favor will He bestow)<br />
which you do love, namely, help from Allah and a<br />
speedy victory. So give glad tidings to the believers. O<br />
you who believe, be helpers of Allah, as said Jesus, the<br />
son of Mary, to the disciples, ’Who will be my helpers to<br />
(the work of) Allah?’ The disciples said, ’We are Allah’s<br />
helpers!’ Then a portion of the Children of Israel believed<br />
and a portion disbelieved, but we gave power to those who<br />
believed against their enemies and they became the ones<br />
that prevailed.”(Qur’an 61:10-14). [See the discourse, Between<br />
the Past and Present, under the subheading ”Obstacles<br />
in the Way.”]<br />
2.6. Strategic Planning<br />
The Islamic movement must be clear in its purpose,<br />
goals and strategies, and must distinguish them from subordinate<br />
objectives, courses of action and tactics.<br />
2.6.1. Clear Goals<br />
Clarity of purpose in the Islamic Movement is a source<br />
of strength for the fully committed. This purposiveness<br />
and coherent goals structure avoids wasted or inefficient<br />
effort and permits all one’s abilities and strength to focus<br />
on the most effective Islamic work.<br />
From study of Islamic methodology and analysis of<br />
texts of the Qur’an and hadith, and Islamic history, it<br />
is clear that the purpose of Revelation is for mankind to<br />
serve Allah, the Almighty, both individually and collectively.<br />
Men and women should be the servants of Allah<br />
not only while praying in the mosques but in their daily<br />
lives while earning a living or doing business; not only during<br />
their fasting, but also while they are governing. Not<br />
only when they make supplications to Allah but also when<br />
they sit in judgement on others.<br />
Allah, the Almighty, says:<br />
I have created Jinns and men only that They may<br />
[know, worship, and] serve Me. [Qur’an 51:56]<br />
In other words, Muslims in an Islamic Movement are<br />
the true servants of Allah and their obedience is only to<br />
Allah, the Almighty, in all matters of life. It encompasses<br />
not only religious affairs but also worldly affairs. This is<br />
because Islam teaches its followers that there is no segregation<br />
or separation between religion and worldly affairs.<br />
Islam rejects the idea of secularism which is based on separation<br />
of religion and state in accordance with the superficial<br />
understanding of the supposed statement of the<br />
Prophet Jesus, peace be upon him, -Render unto Caesar<br />
what is Caesar’s and unto God what is God’s, which is<br />
translated into the idea that religion is for God (Allah)<br />
and the state is for everyone. The servitude of man means<br />
that he must reject all manmade philosophies and systems<br />
that by nature lead mankind to submit to the false gods<br />
of materialism.<br />
Islam rejects totally all of these paradigms, systems and<br />
methods because:<br />
1. It is clear that they transgress against Allah’s rights<br />
and rules. Allah, the Almighty, says:<br />
The Command Rests with none but Allah. [Qur’an<br />
6:57]<br />
28<br />
2. All such man-made concepts and practices cause<br />
weakness and failure. Therefore they are unable to<br />
bring out the true nature of mankind in the trials of<br />
life. Allah, the Almighty, says:<br />
Is then He Who creates like one that creates not?<br />
Will you not receive admonition? [Qur’an 16:17]<br />
2.6.2. Clear Methods<br />
Working for Islam means to establish Allah’s rule on<br />
this earth, which means replacing man-made laws and systems<br />
of governance and problem-solving. Allah’s rule is<br />
complete and comprehensive consisting of the greatness of<br />
its creed, the beauty of its moral teachings and the universal<br />
laws and methods that provide detailed guidance for<br />
every practical situation in life.<br />
Since our ultimate goal is to replace the un-Islamic system<br />
with a total Islamic one, every effort that does not<br />
contribute toward achieving the goal of destroying the un-<br />
Islamic system is useless and will only prolong evil. Allah,<br />
the Almighty, says:<br />
Now then, for that (reason), call (them to the Faith),<br />
and stand steadfast as you are commanded, and do not<br />
follow their vain desires. [Qur’an 26:15]<br />
The method of work must be determined entirely by<br />
this overriding goal, because Islam has been revealed for<br />
the purpose of achieving this same goal. This method of<br />
work is clear from the path the Prophet (s) chose, to reach<br />
this goal.<br />
The Islamic method used for this ultimate goal gives<br />
depth of meaning to our work. The Islamic Movement<br />
wants to bring all people to a state of total submission to<br />
Allah, the Almighty, in their practice, their interactions,<br />
their political and economic systems, their laws, -in every<br />
aspect of their lives.<br />
Fundamental transformation of society requires actions<br />
that can change it at its very roots. The Islamic Movement<br />
therefore must reject every cosmetic act or process<br />
of putting band-aids on the wounds of the fundamentally<br />
flawed societies of materialism. The Islamic Movement<br />
must reject un-Islamic methods and refuse to coexist with<br />
any man-made ideologies.<br />
As to its method four things are critical to the Movement’s<br />
Success. It must be:<br />
1. Comprehensive<br />
The scope and focus of all Movement work should<br />
include four elements in order to be comprehensive.<br />
These are implementation of thought and political<br />
strategy, organization and tactical planning, human<br />
preparation, and the manpower and weapons. These<br />
elements should be separated from each other, because<br />
they are complementary and mutually reinforcing<br />
in every effort to pursue the ultimate goal.<br />
Allah, the Almighty, says:<br />
And fight them until persecution is no more and religion<br />
is all for Allah. [Qur’an 8:39]<br />
2. Universal<br />
The Movement must be universal in its planning, organization,<br />
and implementation, in the sense that it<br />
is active everywhere, in every country and throughout<br />
every society. Islam is a universal system of<br />
thought and action. It goes beyond the boundaries<br />
of country, nationality, family, and language. This<br />
system is unique in the sense that it covers all aspects<br />
of thought and governance, with the flexibility<br />
essential for effective implementation. This has made<br />
Islam the only system capable of offering solutions to<br />
the problems of life wherever or whenever they may<br />
arise.<br />
The universality of Islamic teachings can be seen<br />
through the development of an Islamic community<br />
that reaches out to a great portion of the world, and<br />
preserves the beliefs, values and methods of effective<br />
action.<br />
The universality of the Islamic work is essential<br />
and obligatory because our major problems are now<br />
global and interrelated. Therefore the Islamic Movement<br />
must be universal in its thinking, ideology, direction,<br />
and strength. All local problems have some<br />
universal characteristics and links with the broader<br />
external world.<br />
Therefore those who work for Islam must free themselves<br />
from thinking only about their local problem<br />
or from a local frame of reference.<br />
Duties and responsibilities of the Islamic movement<br />
are not limited to finding or providing solutions to<br />
the myriad of problems that arise in un-Islamic societies,<br />
e.g., in education, the mass media, food,<br />
clothing, politics, and economics. Islamic movements<br />
should get involved in these issues, but their involvement<br />
should focus on exposing the falsehood and the<br />
evil and the destruction caused by un-Islamic systems.<br />
This focus will undercut any efforts by un-<br />
Islamic rulers to exploit these issues in order to retain<br />
or consolidate their power.<br />
As an example, the Islamic movement should address<br />
the issue of inflation by identifying it as a natural result<br />
of monopoly capitalism, whose leaders can benefit<br />
from inflation to further narrow the ownership<br />
of the nation’s wealth. Hence, the Islamic movement<br />
must explain to the public that property ownership<br />
in the means of production must be widely held in<br />
29<br />
order to be Islamic and that Islam is the only system<br />
of thought that recognizes the man’s right of<br />
property ownership as the core of economic and social<br />
justice. The Islamic movement should not work<br />
together helping an un-Islamic system solve its problems<br />
without addressing their underlying causes, because<br />
cooperation in alleviating the effects of injustice<br />
only prolongs the power of an unjust system.<br />
In addressing the Palestinian problems and all its injustices,<br />
the Islamic movement should point out the<br />
failure of all un-Islamic systems that have attempted<br />
to govern Palestine. These un-Islamic systems have<br />
failed to instill in the people the spirit and the feeling<br />
of struggling in the path of Allah and have failed to<br />
free the land that has been usurped by transgressors.<br />
The Islamic movement should also build the belief,<br />
trust and pride in Islam as the only method capable<br />
of preparing and molding the ummah to face with<br />
fortitude any difficulties in the struggle of justice.<br />
3. Faithful to the Way of the Prophet<br />
The Islamic movement should rely only on the methods<br />
the Prophet Muhammad (s) used, to achieve Islamic<br />
goals. In this regard we must remember that<br />
his methodology is the only correct way to move forward.<br />
The Prophet’s life-example shows the right<br />
techniques of preaching, public relations, and working<br />
with people; it is a perfect model for confronting<br />
and defeating forces of ignorance (jahiliyyah).<br />
The life of the Prophet Muhammad (s), brings out<br />
four principles as the foundation of all our Islamic<br />
work:<br />
First, at the very beginning, the declaration of submission<br />
to Allah. Allah, the Almighty, says:<br />
In order that Allah may separate the impure from<br />
the pure. [Qur’an 8:37]<br />
This declaration was revealed to the Prophet<br />
Muhammad (s), in many ways, all calling mankind<br />
to worship only Allah, in his sublimity, and divinity,<br />
in every aspect of life.<br />
Even though the Prophet (s) and his companions suffered<br />
various kinds of torture, but they never gave up<br />
and did not take the easy way out in practicing their<br />
beliefs and calling people to believe the Message and<br />
basic truths for which they struggled. Allah, taught<br />
the Prophet declare:<br />
Say: O you that reject Faith! I worship not what<br />
you worship, nor will you ,N,orship what I worship.<br />
And I will not worship what you have been wont to<br />
worship, nor will you worship what I worship. To<br />
you be your way, and to me mine. [Qur’an 109:1-6]<br />
Say, The Truth is from your Lord: let him who will<br />
believe, and let him who will, reject (it). [Qur’an<br />
18:29]<br />
Second, the formation and mobilization of a group<br />
of people bound together by belief and faith in Allah,<br />
the Almighty, who obey the organization and<br />
its leadership and who perform their responsibilities<br />
with the guidance of Allah. Such a group is not diverted<br />
from the goals by the decision-making process<br />
nor by small matters and trivial problems. Rather<br />
they are more concerned with working and preparing<br />
themselves to achieve the goal of Islam in their allocation<br />
of time and effort. Their commitment to the future<br />
of Islam overcomes their own personal interests,<br />
as it did for those of Darul Arqam bin AI-Arqam,<br />
whose faith was firm, and for all the Companions of<br />
the Prophet, peace be upon him, who sacrificed in<br />
jihad in the Battles of Badr, Qadisiah, and Yarmuk.<br />
The history of the first generation, prepared and<br />
groomed by Muhammad, peace be upon him, is filled<br />
with this kind of countless brave and fearless heroes.<br />
Through this generation, Allah opened the doors for<br />
the Message of Islam. They are our forefathers [in<br />
Islam], so let us be like them.<br />
Third, carefully prepared all-out effort against the<br />
forces of ignorance. The Prophet (s), exercised such<br />
care because he knew that the central Islamic goal is<br />
to totally change all aspects of human life, especially<br />
thought and belief, the way of life, and the system of<br />
governance. This form of confrontation requires pioneers,<br />
who are strong in faith, well prepared, capable<br />
of carrying out their responsibilities, and ready for<br />
the greatest sacrifices in pursuing the great Islamic<br />
goal.<br />
Therefore the preparation has to be comprehensive<br />
and complete, encompassing worship and education<br />
in ways of thinking and knowledge, organization and<br />
planning, and training for jibad, both spiritual and<br />
physical. All of this preparation must be carried<br />
out according to priorities, based on the quantitative,<br />
qualitative and urgent needs of the particular<br />
stage.<br />
4. Materially Strong<br />
A successful revolutionary movement requires a balance<br />
of material and non-material strength. Neglect<br />
of either leads to extremism, and extremism<br />
is strongly condemned in Islam.<br />
Imam Hasan AI-Banna explained the role of material<br />
strength in the strategy of the Islamic movement as<br />
follows:<br />
30<br />
Many people ask, ”Does the Islamic movement plan<br />
to use its strength in achieving its goal?” ”Does the<br />
Islamic movement have in mind a comprehensive or a<br />
complete revolution to replace the ruling system and<br />
other social systems that exist today?” Since I do not<br />
want to allow these questioners to continue in their<br />
state of confusion, I want to use this opportunity to<br />
answer those questions thoroughly and clearly.<br />
The Qur’an says:<br />
Against them make ready your strength to the utmost<br />
of your power, including steeds of war, to strike<br />
terror into [the hearts of] the enemies, of God and<br />
your enemies. [Qur’an 8:60]<br />
The Prophet, peace be upon him, said: A strong<br />
believer is better and more loved by Allah than the<br />
weak believer.<br />
Prayer for strength and the courage to use it is common<br />
in Islamic prayer. Thus, the Prophet (s), prayed<br />
for the strength of total concentration and calmness,<br />
and taught this prayer to his Companions:<br />
Oh Allah, Oh my God, I seek refuge from you from<br />
the feeling of depression; I seek refuge from You<br />
from the feeling of cowardliness and stinginess, I seek<br />
refuge from you from the burden of debt and from<br />
suppression by those in power.<br />
Our slogan is ”strength in everything.” Therefore,<br />
the Muslim Brotherhood must work from and with<br />
this strength.<br />
The Islamic movement must be mature in its thinking<br />
and far sighted in its vision, so it will not be influenced<br />
by undue enthusiasm for the insignificant objectives<br />
of the shortsighted. We know that the most<br />
important strength is our faith and belief, followed<br />
in order by, the strength of togetherness, and the<br />
strength of manpower and weapons. No group can<br />
be strong without values. An organization or group<br />
with superficial strength in manpower and weapons,<br />
but disorganized or weak in faith, will lead itself to<br />
destruction.<br />
Should the use of force he the initial solution or only<br />
if necessary, the choice of last resort in a final stage?<br />
How does one identify and evaluate the good or had<br />
results of the use or non-use of force in each stage<br />
of the systemic revolution to which all Muslims are<br />
called? The Islamic Movement should consider these<br />
questions carefully.<br />
2.7. The Requirements of Bai‘ah and<br />
Brotherhood<br />
Every Muslim has the ability to help the Islamic movement<br />
in its course of Islamic work, but only by disciplining<br />
himself or herself as a member of the movement in<br />
the characteristics described in previous chapters of this<br />
book. This character-building can also be accomplished<br />
simply by experiencing the hardships faced by the Muslim<br />
community and other communities in society. Constructive<br />
action requires the members of the movement to rise<br />
above these hardships by understanding their causes and<br />
putting faith in the power of Islam (submission to Allah)<br />
to save mankind. Men and women can be asset to the<br />
Islamic Movement only when they have developed a balanced<br />
personality, i.e. developed a high level of humanity<br />
and internalized the rules of good character, so that<br />
they can submit fully to the principles and laws of Islam<br />
throughout their lives.<br />
2.7.1. Quality Over Quantity<br />
The first requirement is quality. Naturally the Islamic<br />
Movement will strive to increase its membership through<br />
every way acceptable in Islamic law (shari’ab). But, these<br />
ways exclude any effort to recruit members without considering<br />
the required conditions of membership, because the<br />
quality of the movement is more important than its quantity.<br />
The movement must expend much time and energy<br />
helping each new member fit into the movement so that he<br />
or she can start carrying the load of the movement’s duties<br />
and responsibilities. The movement can not bear the burden<br />
of unproductive or even counterproductive members<br />
for long, because this would threaten its very survival. Allah,<br />
the Almighty, has said:<br />
And on the of Day of Hunain, behold your great number<br />
elated you, but they availed you naught, for the land,<br />
despite all its vastness, did constrain you, and you turned<br />
back in retreat. [ ]<br />
Large numbers are not decisively important. Priority<br />
should be given to those who really fear Allah, the<br />
Almighty, and are steadfast and submit totally in pursuing<br />
the truth. in certain situations, large numbers can even<br />
lead to defeat. When some of the people involved in the<br />
movement do not understand the truths of Islam or are<br />
not steadfast in observing its teaching, they may become<br />
unruly and clamorous during times of hardship, and in the<br />
midst of battle they may panic and suffer defeat in jihad.<br />
The Movement therefore should evaluate and categorize<br />
every member, so that it can correctly assess his or her<br />
true strengths and design a developmental program tailormade<br />
for each person. This does not mean that some members<br />
will be ignored as not worth anybody else’s time, but<br />
rather that the Movement may provide sufficient awareness<br />
training and education until every member becomes<br />
steadfast and reliable.<br />
31<br />
2.7.2. Bai’ah and Shari’ah<br />
Bai’ah means taking an oath of loyalty. Whoever makes<br />
bai’ah agrees to submit his entire life to the leader and the<br />
ummah. He will not act against the leader in agreed matters,<br />
and will be loyal to him in every action, regardless of<br />
his personal likes or dislikes.<br />
Bai’ah is a tradition of the Prophet (s), such as the<br />
first and second bai’atal ’Aqabah and the bai’ah ar-ridwan<br />
. This kind of bai’ah was taken regularly after the death of<br />
the Prophet (s), whereby the Muslims pledged their loyalty<br />
to the leaders of the Muslim community.<br />
Bukhari narrated from junadah ibn Abi Umaiyah who<br />
said that Ubadah ibn Shamit said: ”The Prophet (s) called<br />
us, and we gave bai’ah to him. He asked us to promise,<br />
among other things, to obey in specific matters, whether<br />
we like it or not, and whether in happiness or hardship,<br />
and not to give priority to ourselves, and not to go against<br />
the orders of authority unless we see that they are clearly<br />
against Allah’s rules and we have clear witness.”<br />
In his book, Fi al Din al Khair, Sadiq Hasan Khan<br />
writes, ”This hadith evidences that it was a sunnah to ask<br />
the Companions to give bai’ah, and similarly the bai’ah<br />
given by the Companions was also a sunnah. To fulfill a<br />
bai’ah is a must (wajib) and to violate it is a sin (ma’asia).<br />
In interpreting this hadith, Ibn Hajar said: ”The words<br />
’whether we like it or not,’ refer to the situations where we<br />
are able to do something asked of us.” Ad-Daudi said ”It<br />
refers to something we hate.” Ibn At-Tin said, ”The obvious<br />
meaning concerns times of laziness and hardship.”<br />
Ibn al-jauzi al Makki then said, ”We should not oppose a<br />
Muslim government even though the government is cruel<br />
until it is clear that it is kufr (not Islam).”<br />
We must obey the Islamic government in every legitimate<br />
matter, whether we like it or not, except when we are<br />
asked to commit sins. Only in this situation is it permissible<br />
to disobey the government. An honest person should<br />
be able to conclude from the above that it is a requirement<br />
for him to obey the leader.<br />
2.7.3. Loyalty And Shari’ah Law<br />
Loyalty includes obedience to legitimate orders and responsiveness<br />
to every request. When loyalty is not observed,<br />
there will be iniquity, oppression and persecution.<br />
The early signs of these may not be visible to a believer,<br />
and so he may feel that nothing is wrong. Therefore he<br />
must be careful not to let his speech or action become a<br />
source of trial (fitnah) for others and for himself.<br />
Loyalty is a must so long as it is not sinful or an occasion<br />
of sin. Allah, the Almighty, has said:<br />
O you who believe! Obey Allah and obey His Messenger<br />
and those charged with authority among you. If you<br />
differ in anything among yourselves, refer it to Allah and<br />
His Messenger if you do believe in Allah and the Last Day.<br />
This is the best [for you] and best in the end. [Qur’an 4:59]<br />
It is narrated from Abu Hurairah that the Prophet (s),<br />
said:<br />
Those who obey me obey Allah, the Almighty. Those<br />
who disobey me disobey Allah, the Almighty. Those who<br />
obey my leader obey me and those who disobey my leader<br />
disobey me.<br />
Bukhari related a hadith from Anas ibn Malik in which<br />
Anas said that the Prophet (s), said:<br />
Listen and obey even though your leader is a slave from<br />
Ethiopia.<br />
Bukhari also has recorded a hadith from Ibn Abbas<br />
that the Prophet (s), said:<br />
Those who dislike something their leader does, must be<br />
patient with him because anyone who leaves the jama’ah<br />
(community) and later dies in that condition, he dies in<br />
jahiliyyah.<br />
From Abdullah ibn’Umar, Bukhari relates that the<br />
Prophet (s), said:<br />
To listen and obey is a must for every Muslim in every<br />
matter whether he likes it or not. But if he is asked to<br />
commit sin, then he is not under obligation to listen and<br />
obey.<br />
Bukhari also narrated that ’Umar AI Khattab said:<br />
There were many people during the time of the Prophet<br />
(s), who were punished on the evidence of Revelation. Now<br />
there is no more Revelation. We will punish you for what<br />
you do. Those who do good deeds, we will protect and<br />
trust them, for we have no right to assert what they intend<br />
to do. Allah, the Almighty, will judge intent, which<br />
is a matter of one’s heart. Those who show bad deeds to<br />
us, we will not protect or trust, even though they might<br />
claim to have a good intention.<br />
2.7.4. The Principles of Bai’ah<br />
Involvement in the Islamic Movement means direct involvement<br />
in Islam. It also means a new compact or<br />
covenant with Allah, the Almighty, wherein one is committed<br />
to make jihad for the sake of Allah, the Almighty.<br />
Defining the principles of bai’ah, Imam Hasan AI Banna<br />
said:<br />
Our principles of bai’ah are ten: understanding, sincerity,<br />
ibadah (worship), jihad (struggle), sacrifice, obedience,<br />
perseverance, integrity, brotherhood, and trust.<br />
1. Understanding<br />
The first principle of Islamic bai’ah is the clear understanding<br />
that the philosophy of life, or ideology<br />
of the Islamic Movement is a purely Islamic ideology.<br />
This philosophy of life contains the following twenty<br />
sub-principles:<br />
32<br />
(a) Islam is a complete system and covers all aspects<br />
of life.<br />
(b) The Qur’an and the sunnah of the Prophet (s),<br />
are the ultimate sources of reference for all Muslims.<br />
(c) True faith, acceptable worship, and striving for<br />
the cause of Allah, the Almighty, are the lights<br />
and sweetness given by Allah, the Almighty,<br />
to those He chooses. Mystical enlightenment<br />
(kashf), dreams, inspiration (ilham), and various<br />
other illusions, can not serve as proofs if<br />
these are against the teachings of the Islam and<br />
shari’ah.<br />
(d) Talismans, charms, palm reading, fortune<br />
telling, and horoscopes, as well as everything<br />
related, are practices contrary to Islam. They<br />
must be fought, including talismans and charms<br />
inscribed with verses of the Qur’an such as those<br />
compiled by Imam Hasan AI Banna, in his AIma’thurat.<br />
(e) The opinions of a leader or his deputies concerning<br />
matters of public welfare (maslaha mursalah)<br />
can be acceptable if they are not in conflict<br />
with the principles of Islamic shari’ah.<br />
(f) The sayings of any person other than the<br />
Prophet (s), may be either accepted or rejected<br />
on its merits.<br />
(g) A Muslim whose knowledge has not reached a<br />
level of discernment sufficient to understand the<br />
reasoning behind various rules of Islamic law<br />
must follow one of the four most authoritative<br />
leaders of the Islamic law &#8211; Malik, Ahmad ibn<br />
Hanbal, Abu Hanifah, and Shaf’i.<br />
(h) Differences of opinion in minor matters of law<br />
or details of regulations should not be a reason<br />
for causing disunity in the Muslim community.<br />
(i) To discuss theoretical issues and problems that<br />
do not benefit one’ s practical life, can be categorized<br />
as unduly burdensome and is forbidden<br />
by the shari’ah.<br />
(j) To know Allah, the Almighty, to believe in Him<br />
and not to admit any rivals to Him, constitutes<br />
the core of the Islamic creed. The verses of the<br />
Qur’an and ahadith from the Prophet (s) about<br />
the attributes of Allah must be accepted without<br />
trying unduly to put on them false interpretation,<br />
because their true meaning is beyond<br />
human experience and comprehension.<br />
(k) All innovations (bid’ah) in the din of Allah that<br />
are baseless and have support from the Qur’an<br />
or hadith should be countered in a most intelligent<br />
way.<br />
(l) Committing bid’ah by deliberately adding or<br />
leaving out something from formal worship is<br />
a minor problem in Islamic law.<br />
(m) Making supplication (dua) to Allah through an<br />
intermediary (tawasul), such as a saint, is also<br />
a relatively minor problem of fiqh (Islamic law);<br />
it is not a problem of creed or aqidah.<br />
(n) Visiting graves is a sunnah of the Prophet (s),<br />
as long as it according to his practice and teachings.<br />
(o) To love and respect pious people because of<br />
their piety is a legitimate form of developing<br />
closeness to Allah.<br />
(p) Wrong custom cannot legitimize bid’ah or alter<br />
the meaning of the shari’ah.<br />
(q) Faith is the basis of worship. Worshipping internally<br />
with the mind and heart is better than<br />
worshipping externally through the body, but<br />
Islam requires both forms of worship for balance<br />
and perfection.<br />
(r) Islam liberates the mind and encourages people<br />
to observe, analyze and understand the universe<br />
as a means to advance them in knowledge<br />
and wisdom, because Islam welcomes all useful<br />
things.<br />
(s) Human opinion and the shari’ah may legitimately<br />
differ, but not on indubitable matters.<br />
In such cases positive assertions of law will take<br />
precedence over individual opinion. Dubious<br />
matters should be interpreted to conform with<br />
indubitable truths. Where a person’s opinion<br />
differs with the shari’ah, the shari’ah must be<br />
followed until the correctness of the person’s<br />
opinion is either proven or disproven.<br />
(t) A Muslim should never be deliberately designated<br />
as a kafir (an infidel), even though he or<br />
she is a sinner, unless he or she should admit<br />
to being an unbeliever or act in a way that can<br />
not be interpreted as anything other than kufr.<br />
2. Sincerity<br />
Every Muslim should aspire only to please Allah in<br />
every aspect of his life, whether in word, action, or<br />
jihad. He should not look for self-interest, respect,<br />
prestige, or title, because a Muslim believes in an<br />
ideology and a creed; he is not a fortune-hunter who<br />
merely seeks worldly gains.<br />
3. Worship Through Action (Ibadah)<br />
The meaning of ibadah is to perfect oneself, to build a<br />
Muslim family, educate the community, liberate the<br />
33<br />
Muslim nation, correct a ruler until he follows Islam,<br />
regain the respect and influence of the Muslim<br />
ummah in the world community, and provide leadership<br />
by propagating the message of Islam to the ends<br />
of the earth until no trials and barriers are left, and<br />
all mankind willingly submits to its Creator, Allah.<br />
4. Jihad<br />
Jihad is a continuous struggle that will last till the<br />
Day of Judgement. Failure to engage in jihad or to<br />
have no intention for it is a sure sign of jahiliyyah,<br />
as the Prophet (s), said:<br />
Those who die and never went to war (in the cause<br />
of Allah), nor had the intention of doing so, will die<br />
as in the state of jahiliyyah (ignorance).<br />
5. Sacrifice<br />
Sacrifice for a Muslim means to sacrifice life, wealth,<br />
time, and everything in life for the sake of reaching<br />
his ultimate goal.<br />
6. Obedience<br />
Obedience for a Muslim means to obey every command<br />
and implement it whether in time of happiness<br />
or hardship, and whether one likes it or not.<br />
7. Perseverance<br />
A Muslim must always worship Allah and wage jihad<br />
until death in order to reach his ultimate goal, although<br />
the goal is invisible and it takes a long time to<br />
achieve. Therefore the steadfast Muslim will achieve<br />
this goal either through a lifetime of effort or through<br />
sudden death as a martyr.<br />
8. Integrity<br />
This means to be true to one’s self, and honest in<br />
one’s thinking, to do one believes, and to refuse to<br />
compromise with what is false, whether a system or<br />
an ideology, for Islam is the most comprehensive and<br />
perfect truth. In the words of the Qur’an,<br />
(Our religion is) the baptism of Allah! And who can<br />
baptize better than Allah?<br />
9. Brotherhood<br />
Brotherhood is to unite one’s soul and spirit with<br />
one’s faith and beliefs.<br />
10. Trust<br />
Trust and confidence in competence, sincerity, and<br />
ability of leadership inspire feelings of love, appreciation,<br />
honor, and obedience.<br />
2.7.5. The Responsibilities Of A Muslim Brother / Sister<br />
In his Educational Discourse, Imam Hasan AI Banna<br />
outlined more than thirty responsibilities of a member of<br />
an Islamic movement. These responsibilities are obligations<br />
to himself or herself, family, and community. He<br />
said:<br />
My honest brothers [and sisters], your pledge (bai’ah)<br />
requires you to carry out the following duties. Once you<br />
have done so, you will be strong and hard as a rock.<br />
Recite the Qur’an, at least a juz (1/30 of the Qur’an)<br />
daily. You should finish a reading of the whole Qur’an in<br />
no more than a month and no less than three days.<br />
Improve your Qur’anic recitation by listening to good<br />
reciters and taking lessons in recitation. Set aside some<br />
time to study the life-history of the Prophet (sirah), and<br />
the history of Muslims. You should read a lot of books,<br />
but a Humatul Islam is a must. Also, you should read a<br />
lot of ahadith and memorize at least forty, if possible, from<br />
the collection of Imam AI-Nawawi. Last but not least, you<br />
should study the basics of Islamic faith (aqidah), Islamic<br />
law (fiqh) and its branches.<br />
Have a medical check-up regularly and have a doctor<br />
check any ailment. You should take care of your strength<br />
and refrain from anything that will harm your body.<br />
Avoid excessive use of coffee, tea and other caffinated<br />
drinks, and abstain from smoking.<br />
Practice cleanliness in every aspect of your life, e.g.,<br />
house, clothing, food, body, and work place. As a matter<br />
of fact, Islam has been built on cleanliness.<br />
Speak the truth and never lie even once.<br />
Fulfill your promises and commitments and do not resort<br />
to lame excuses.<br />
Be brave and wise. Bravery requires one to talk frankly<br />
about what is true and right, to keep secrets, to admit<br />
one’s faults, to be aware of oneself, and to keep oneself<br />
from getting angry.<br />
Be serious but your seriousness should not stop you<br />
from enjoying jokes and laughing.<br />
Be modest, careful, and sensitive to good and bad<br />
things by expressing your happiness when experiencing<br />
good and gratitude when encountering bad. You should<br />
ask for a less prominent position, although you deserve or<br />
have a higher one.<br />
Be fair in judging according to sound evidence. Your<br />
anger should not make you ignore the good in others and<br />
your blessings should not make you forget the bad in others.<br />
You should speak the truth even to yourself and to<br />
your closest friends, even though it may be painful to do<br />
so.<br />
Be active in community service. You should be happy<br />
when you have a chance to help others by visiting a sick<br />
person, helping the needy, and offering charity.<br />
Exhibit sympathy, generosity, and forgiveness. You<br />
34<br />
should be tolerant, flexible, and gentle. You should be<br />
kind to human beings and animals, have good relations<br />
with the community, preserve the courtesies of Islam, be<br />
gentle when talking with young people, respect elders, give<br />
up a seat to those who need it more, respect others privacy,<br />
and neither condemn nor insult others.<br />
Improve your reading and writing skills; increase your<br />
knowledge of the Islamic movement [The original reads:<br />
Ikhwan Muslimin (or Muslim Brotherhood).] by reading<br />
about it. Read newspapers and magazines. You should<br />
have a personal library even if it is a small one. You must<br />
increase your knowledge both generally and in your specially<br />
if you have one. You must be able to understand the<br />
problems concerning Muslims in sufficient depth to develop<br />
your own solutions in accordance with our ideology.<br />
Work to earn money no matter how rich you are. Give<br />
priority to ordinary jobs even though their pay is small,<br />
and also give your full attention to this kind of job no<br />
matter how high your qualifications are.<br />
Do not work in the government, but do not reject an<br />
offer of work in the government, even though the pay is<br />
poor, and do not quit unless the work is against Islam.<br />
If you are given a job, work wholeheartedly, and honestly.<br />
Demand and respect the rights of your brother and<br />
yourself.<br />
Avoid gambling and unlawful sources of income.<br />
Do not take interest (riba) in any, dealings and you<br />
must avoid the circumstances that may lead to it.<br />
Contribute to the material gains encouraged by Islam<br />
by promoting private industry, especially Muslim-owned<br />
and employee-owned enterprises.<br />
Support da’wah by contributing some of your wealth<br />
to the Islamic movement. You must pay the minimally<br />
established amount of zakat on your assets because this is<br />
the right of those who should receive it.<br />
Keep a small amount of your income for emergency use.<br />
Never overspend on luxury goods.<br />
Strive as far as you can to keep alive the beneficial practices<br />
of true Islamic culture and eliminate secular culture<br />
in your daily conduct. Some of these practices are to greet<br />
everyone with salaam, speak the Arabic language, read<br />
the sirah, wear modest clothing, maintain regular hours of<br />
work, and rest, observe the rules of eating and drinking,<br />
and follow the etiquettes of visiting, in accordance with<br />
the sunnah of the Prophet (s).<br />
Avoid all newspapers, magazines, clubs, gatherings,<br />
and schools that oppose the principles of Islam, unless your<br />
reading and activities in such prohibited institutions are<br />
designed only to promote the good and oppose the bad.<br />
Always remember Allah, the Almighty, and the Day of<br />
judgement. You should look for every means to seek the<br />
blessing of Allah, the Almighty, with high spirit and selfesteem.<br />
You should always seek to be closer to Allah through<br />
voluntary prayer such as night prayer (qiyam al-layl), and<br />
fasting at least three days a month. You should use the<br />
supplications of the Prophet, (s).<br />
When you clean yourself, always follow the rules and<br />
regulations. Always maintain wudu (ablution).<br />
When you perform the daily prayers, do so on time,<br />
and always fulfill the rules. Pray in congregation and at<br />
the mosques as much as possible.<br />
Observe the fast of Ramadan and go on the hajj as<br />
soon as you have the means.<br />
Regularly make the intention to go on jihad with the<br />
ambition to die as a martyr. You should be ready for this<br />
right now, even though its time may not have come yet.<br />
Regularly renew your repentance, ask for Allah’s forgiveness,<br />
and avoid every kind of sin. You should set aside<br />
a special time to evaluate yourself before going to bed every<br />
night. Always keep track of your time because time means<br />
life. Do not misuse your time. Always fear Allah guarding<br />
yourself against evil, and keeping away from dubious<br />
things so as not to fall into doing the unlawful (haram)<br />
things.<br />
Avoid lustful thoughts, emotions, and occasions of sin,<br />
for example, by restraining your gaze from haram things,<br />
urging your emotions to focus on good deeds, and keeping<br />
your heart and desires away from all that is forbidden.<br />
Do not eat or socialize where alcohol is used and consumed.<br />
Do not take immoral people as friends and avoid all<br />
places that may lead to sin, such as bars.<br />
Avoid all evil forms and places of entertainment, and<br />
in general, avoid the environment of arrogant and extravagant<br />
luxury.<br />
Get to know every member of your Movement by introducing<br />
yourself to those you do not know. Fulfill the rights<br />
of brotherhood as much as you can by showing love and<br />
appreciation, by mutual help and giving preference to others<br />
and by attending the movement’s gatherings wherever<br />
possible.<br />
Dissociate yourself from every gathering or organization<br />
that opposes your ideological standpoint, especially<br />
when the Movement asks you to do so.<br />
Spread the message of Islam everywhere you go. Keep<br />
the leadership informed about all you see that is relevant<br />
to its mission, and avoid any actions that might hurt or<br />
weaken your leaders and the movement. Always maintain<br />
good relations with your direct superior in the leadership.<br />
Regard yourself as a soldier in battle ready to go on duty<br />
at any time.<br />
Make frequent use of the following supplication known<br />
as the wird al rabitah (or supplication of commitment).<br />
First, read the following verse carefully: Say: O Allah!<br />
Lord of Power (and Rule), You give power to whom You<br />
please, and You strip off power from whom You please.<br />
You endow with honor whom You please, and You bring<br />
35<br />
low whom You please. In Your hand is all good. Verily,<br />
over all things You have power. You cause the night to<br />
gain on the day, and You cause the day to gain on the<br />
night. You bring the living out of dead, and You bring the<br />
dead out of the living, and You give sustenance to whom<br />
You please, without measure. [Qur’an 3:26-27]<br />
Then say the following supplication:<br />
O Allah, this is the arrival of Your night and the departure<br />
of Your day. Please forgive me.<br />
After that bring to mind the face of your closest brother<br />
and try to feel a spiritual relationship between you and him<br />
and with others whom you do not know, and make the following<br />
supplication:<br />
O Allah, indeed you know that these souls have agreed<br />
to love you, to obey you, to cooperate in spreading Your<br />
message, and have promised to support and apply your law<br />
(shari’ah). O Allah, strengthen our relationship, make our<br />
love last, and show us the right way. Fulfill these souls with<br />
Your light that never diminishes, expand our souls with<br />
the blessings of faith in You, for in You we believe. Enlighten<br />
these souls with Your understanding and let us die<br />
as martyrs by fighting in Your cause, for indeed You are the<br />
best Protector and Helper. O Allah, fulfill these requests,<br />
bestow Your blessings and peace on Prophet Muhammad<br />
(s), and his family, and his companions. [Imam Hasan<br />
AI-Banna Risalat Ta’alim]<br />
2.7.6. The Responsibilities of Brotherhood<br />
In Islam, faith or aqidah is the core of brotherhood. it<br />
keeps Muslims close to each other in a fraternal relationship.<br />
This relationship is based on each brother’s submission<br />
to the Lord, the Almighty, and on their mutual efforts<br />
to be closer to Him. Islamic brotherhood is a bond of faith<br />
as mentioned in the following saying of the Prophet (s):<br />
The strongest relationship is built on loving for the sake<br />
of Allah and becoming angry for the sake of Allah. [Narrated<br />
by Ahmad]<br />
Brotherhood in Islam strengthens the process of building<br />
a Muslim community and keeps Muslims close to each<br />
other. An Islamic movement based on true brotherhood is<br />
as solid as concrete and functions with organic unity as a<br />
body that feels the pain when any of its part suffers.<br />
In order to ensure that brotherhood can play this role<br />
in the Muslim Movement, Islam has laid down specific duties<br />
and rights of practicing brotherhood. These are given<br />
below to show that these duties and rights are not theoretical<br />
but are real and true duties and responsibilities:<br />
1. Brotherhood must be able to help each brother obey<br />
Allah, the Almighty, and accept the teachings of the<br />
Prophet (s), who said:<br />
Those whom Allah wishes to be given good deeds,<br />
Allah will sustain them by a pious Muslim friend. if<br />
he forgets, (to do good deeds] his friend will remind<br />
him, and when his friend reminds him, he will help<br />
his friend.<br />
’Umar AI Khattab, said: ”Seek out trustworthy<br />
brothers and live in their community, because they<br />
are the embellishers during happiness and suppliers<br />
in hardship.”<br />
2. Brotherhood is a spiritual bond that helps a person<br />
feel the needs of his brother and cooperate with him<br />
in fulfilling those needs, as indicated by the Prophet<br />
(s):<br />
If one of you goes with your brother to help him fulfill<br />
his duty, and then the Prophet (s), made a sign<br />
with his fingers, added: ’That is better for him than<br />
making i’tikaf [staying in the mosque for worship] in<br />
my mosque for two months. [Narrated by AI Hakim]<br />
3. Brotherhood gives rise to cooperation also in a material<br />
sense, as the Prophet (s) said:<br />
Those who help a Muslim in hardship in this world,<br />
will be protected by Allah from suffering hardship<br />
in the Hereafter. Those who help the unfortunate,<br />
Allah will help them both in this world and in the<br />
Hereafter. Those who keep the secrets of a Muslim<br />
in this world, will have their secrets kept by Allah<br />
in this world and in the Hereafter. Allah will help<br />
His servants as long as they help their fellow Muslim<br />
brothers.[Narrated by Muslim, Abu Dawud, Tirmidhi,<br />
Nasa’i, and Ibn Majah]<br />
4. Brotherhood is a communal responsibility with many<br />
duties. The most important of these is referted to in<br />
the following baditb:<br />
There are six duties of a Muslim to another Muslim:<br />
When you meet him, you should say salaam (give<br />
salutations). When he invites you, you should accept<br />
his invitation. When he advises you, you should<br />
also advise him. When he sneezes and says, ”Alhamdulillah,”<br />
[All praise to Allah], you should say,<br />
”Yarbamukallah”. When he is sick, you should visit<br />
him. And when he passes away, you should accompany<br />
his dead body to the cemetery. [Narrated by<br />
Muslim]<br />
5. Brotherhood in Islam means caring, loving, and cooperating<br />
with one another. In this context, the<br />
Prophet (s), said:<br />
Do not end a friendship, do not turn your back, do<br />
not hate each other, and do not envy each other.<br />
As a servant of Allah, maintain brotherhood. Two<br />
Muslims may not remain on non-speaking terms with<br />
each other for more than three days. [Narrated by<br />
Malik, Bulchari, Abu Da’ud, Tirmidhi, and Nasa’i]<br />
36<br />
In another tradition, the Prophet said:<br />
Do not downgrade a good deed. Even (an apparently<br />
insignificant thing like) looking at your (Muslim)<br />
brother with a pleasant smile, is a good deed.<br />
[Narrated by Muslim]<br />
The Prophet (s) said:<br />
Every good deed is a charity and indeed charity is<br />
meeting your brother with a pleasant smile and pouring<br />
water from a kettle into his glass. [Narrated by<br />
Tirmidhi]<br />
The Prophet (s), also said:<br />
Exchange gifts, so that you will love each other<br />
and the enmity between you and others will vanish.<br />
[Bulchari &amp; Muslim]<br />
6. Brotherhood in Islam implies loyalty and truthfulness.<br />
The Prophet (s) said in one of his traditions:<br />
If one defends the honor of his fellow Muslim brother,<br />
Allah, the Almighty, will keep the Hellfire away from<br />
his face in the Hereafter. [Narrated by Tirmidhi]<br />
The Prophet, peace be upon him, also said:<br />
The supplication of a Muslim for his brother without<br />
his knowledge is an accepted supplication and will be<br />
rewarded by the presence of an angel at his side. Every<br />
time he supplicates for his brother, the angel will<br />
say: Amen, and the same for you too. [Narrated by<br />
Muslim]</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=81&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/08/to-be-a-muslim-fathi-yakan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>The True Religion of God</title>
		<link>http://avaricesoft.wordpress.com/2009/06/08/the-true-religion-of-god/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/08/the-true-religion-of-god/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 19:42:05 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=79</guid>
		<description><![CDATA[
The True Religion of God
By Dr. Abu Ameenah Bilal Philips &#8211; 3rd Edition, 1994
Which Is The True Religion Of God?
Each person  is born in a circumstance which  is not of his own  choosing. The  religion of his
family or the ideology of the state is thrust upon him from the very beginning of his existence
in this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=79&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><br />
The True Religion of God<br />
By Dr. Abu Ameenah Bilal Philips &#8211; 3rd Edition, 1994</strong><br />
Which Is The True Religion Of God?<br />
Each person  is born in a circumstance which  is not of his own  choosing. The  religion of his<br />
family or the ideology of the state is thrust upon him from the very beginning of his existence<br />
in this world. By the time he reaches his teens, he is usually fully brain-washed into believing<br />
that  the  beliefs  of  his  particular  society  are  the  correct  beliefs  that  everyone  should  have.<br />
However, when  some  people mature  and  are  exposed  to  other  belief-systems,  they  begin  to<br />
question the validity of their own beliefs. The seekers of truth often reach a point of confusion<br />
upon realizing that each and every religion, sect, ideology and philosophy claims to be the one<br />
and only correct way for man. Indeed, they all encourage people to do good. So, which one is<br />
right?  They  cannot  all  be  right  since  each  claims  all  others  are wrong.  Then  how  does  the<br />
seeker of truth choose the right way?<br />
God gave us all minds and intellects to enable us to make this crucial decision. It is the most<br />
important  decision  in  the  life  of  a human  being. Upon  it  depends his  future, Consequently,<br />
each  and  every  one of us must  examine  dispassionately  the  evidence  presented  and  choose<br />
what appears to be right until further evidence arises.<br />
Like every other religion or philosophy,  Islam also claims  to be  the one and only  true way  to<br />
God. In this respect it is no different from other systems. This booklet intends to provide some<br />
evidence for the validity of that claim. However, it must always be kept in mind that one can<br />
only determine the true path by putting aside emotions and prejudices, which often blind us to<br />
reality.  Then,  and  only  then, will we  be  able  to use  our God-given  intelligence  and make  a<br />
rational and correct decision.<br />
There are several arguments, which may be advanced to support Islam’s claim to be the  true<br />
religion of God. The following are only three of the most obvious. The first argument is based on<br />
the divine origin of the names of  the religion and  the comprehensiveness of  its meaning. The<br />
second  deals  with  the  unique  and  uncomplicated  teachings  concerning  the  relationship<br />
between  God,  man,  and  creation.  The  third  argument  derives  from  the  fact  that  Islam  is<br />
universally attainable by all men at all  times. These are  the  three basic  components of what<br />
logic and reason dictate necessary for a religion to be considered the true religion of God. The<br />
following pages will develop these concepts in some detail.<br />
The Religion’s Name<br />
The  first  thing  that one  should  know  and  clearly understand  about  Islam  is what  the word<br />
‘Islam” itself means. The Arabic word “Islam” means the submission or surrender of one’s will<br />
to the only true God, known in Arabic as “Allah”. One who submits his will to God is termed in<br />
Arabic a  “Muslim”. The religion of  Islam  is not named after a person or a people, nor was  it<br />
decided by  a  later  generation  of man,  as  in  the  case  of Christianity which was named  after<br />
Jesus Christ, Buddhism after Gautama Buddha, Confucianism after Confucius, Marxism after<br />
Karl Marx, Judaism after the tribe of Judah and Hinduism after the Hindus. Islam (submission<br />
to the will of God) is the religion which was given to Adam, the first man and the first prophet<br />
of God, and it was the religion of all the prophets sent by Allah to mankind. Further its name<br />
was chosen by God Himself and clearly mentioned in the final scripture which He revealed to<br />
man. In that final revelation, called in Arabic the Qur’an Allah states the following:<br />
“This  day  have  I  perfected  your  religion  for  you,<br />
completed My favour upon you, and have chosen for<br />
you Islam as your religion.” [Qur’an 5:3]<br />
“If  anyone  desires  a  religion  other  than  Islam<br />
(submission  to  God),  never  will  it  be  accepted  of<br />
Him.” [Qur’an 3:85]<br />
Page 2 of 7<br />
Hence, Islam does not claim to be a new religion brought by Prophet Mohammed into Arabia in<br />
the  seventh  century, but  rather  to be a  re-expression  in  its  final  form of  the  true  religion  of<br />
Almighty God, Allah, as it was originally revealed to Adam and subsequent prophets.<br />
At this point we might comment briefly on two other religions that claim to be  the  true path.<br />
Nowhere in the Bible will you find God revealing to Prophet Moses’ people or their descendants<br />
that  their religion is  called Judaism, or  to  the  followers of Christ  that  their  religion  is called<br />
Christianity. In other words,  the names  “Judaism” and  “Christianity” had no divine origin or<br />
approval.  It was  not  until  long  after  his  departure  that  the  name Christianity was  given  to<br />
Jesus’ religion.<br />
What, then, was Jesus’ religion in actual fact, as distinct from its name? (Both the name Jesus<br />
and  the name Christ are derived  from Hebrew words,  through Greek and Latin. Jesus  is  the<br />
English and Latin form of the Greek Iesous, which in Hebrew Is Yeshua or Yehoshua’ (Joshua).<br />
The Greek word Christos is a translation of the Hebrew [for] &#8216;messiah&#8217;, which is a title meaning<br />
&#8216;the  anointed&#8217;.) His  religion  was  reflected  in  his  teachings,  which  he  urged  his  followers  to<br />
accept as guiding principles in their relationship with God. In Islam, Jesus is a prophet sent by<br />
Allah and his Arabic name is Eesa. Like the prophets before him, he called upon the people to<br />
surrender their will to the will of God (which is what Islam stands for). For example, in the New<br />
Testament it is stated that Jesus taught his followers to pray to God as follows:<br />
“Our father in heaven, hallowed be your name, may your<br />
will  be  done  on  earth  as  it  is  in  heaven.”  [Luke<br />
11:2/Matthew 6:9-10]<br />
This concept was emphasised by Jesus in a number of his statements recorded in the Gospels.<br />
He  taught,  for  example,  that  only  those who  submitted would  inherit  paradise.    Jesus  also<br />
pointed out that he himself submitted to the will of God.<br />
“None of those who call me ‘Lord’ will enter the kingdom<br />
of God, but only the one who does the will of my Father<br />
in heaven.” [Matthew 7:21]<br />
“I cannot do anything of myself I judge as I hear and my<br />
judgment  is  honest  because  I  am  not  seeking my  own<br />
will but the will of Him who sent me.” [John 5:30]<br />
There are many reports  in  the Gospels which show  that Jesus made  it  clear  to his  followers<br />
that he was not the one true God. For example, when speaking about the final Hour, he said:<br />
“No-one  knows  about  the  day  or  hour,  not  even  the<br />
angels  in  heaven,  not  the  son,  but  only  the  Father.”<br />
[Mark 13:32]<br />
Thus, Jesus like the prophets before him and the one who came after him, taught the religion<br />
of Islam: submission to the will of the one true God.<br />
God And Creation<br />
Since  the  total  submission of one’s will  to God  represents  the  essence of worship,  the  basic<br />
message  of  God’s  divine  religion,  Islam,  is  the  worship  of  God  alone.  It  also  requires  the<br />
avoidance of worship directed to any person, place or thing other  than God. Since everything<br />
other  than God,  the creator of all  the  things,  is God’s creation,  it may be said  that  Islam,  in<br />
essence, calls man away from worship of creation and invites him to worship only his Creator.<br />
He is the only one deserving of man’s worship, because it is only by His will that prayers are<br />
answered.<br />
Page 3 of 7<br />
Accordingly,  if a man prays  to a  tree and his prayers are answered,  it  is not  the  tree which<br />
answers  his  prayers  but God,  who  allows  the  circumstances  prayed  for  to  take  place.  One<br />
might  say,  “That  is  obvious”.  However,  to  tree-worshippers,  it  might  not  be  so.  Similarly,<br />
prayers  to  Jesus,  Buddha,  or  Krishna  or  Saint  Christopher,  or  Saint  Jude  or  even  to<br />
Muhammad,  are  not  answered  by  them,  but  are  answered  by  God.  Jesus  did  not  tell  his<br />
followers to worship him but to worship God, as the Quran states:<br />
“And  behold!  Allah  will  say:  ‘O  Jesus,  the  son  of<br />
Mary!  Did  you  say  to  men,  worship  me  and  my<br />
mother as gods besides Allah?, He will say: “Glory to<br />
you, I could never say what I had no right  (to say).”<br />
[Qur’an 5:118]<br />
Nor did Jesus worship himself when he worshipped, but rather he worshipped God. And Jesus<br />
was reported in the Gospels to have said,<br />
“It is written: &#8216;Worship the Lord your God and serve Him<br />
only.’” [Luke 4:8]<br />
This basic principle  is  contained  in  the opening  chapter of  the Qur’an, known as Soorah al-<br />
Faatihah, verse 4:<br />
“you alone do we worship and from you alone do we<br />
seek help.”<br />
Elsewhere, in the final book of revelation, the Quran, God also said:<br />
“And  you  Lord  says:  ‘Call  on Me  and  I  will  answer<br />
your (prayer).’” [Qur’an 40:60]<br />
It is worth emphasizing that the basic message of Islam (namely, the worship of God alone) also<br />
proclaims that God and His creation are distinctly different entities. God is neither equal to His<br />
creation nor a part of it, nor is His creation equal to Him or a part of Him.<br />
This might seem obvious, but man’s worship of  creation,  instead of  the Creator  is  to a  large<br />
degree based on ignorance, or neglect, of this concept. It is the belief that the essence of God is<br />
everywhere  in His  creation  or  that His  divine  being  is  or was  present  in  some  parts  of His<br />
creation, which has provided justification for the worship of God’s creation and naming it the<br />
worship  of  God.  However,  the message  of  Islam,  as  brought  by  the  prophets  of  God,  is  to<br />
worship only God and to avoid the worship of His creation either directly or indirectly.<br />
In the Qur’an God clearly states:<br />
“For  we  assuredly  sent  amongst  every  people  a<br />
prophet,  with  the  command Worship Me  and  avoid<br />
false Gods.” [Qur’an 16:36]<br />
When idol worshippers are questioned as to why they bow down to idols created by men, the<br />
invariable  reply  is  that  they  are  not  actually worshipping  the  stone  image,  but God  who  is<br />
present within it. They claim that the stone idol is only a focal point for God’s essence and is<br />
not in itself God! One who has accepted the concept of God being present in any way within His<br />
creation will be obliged to accept this argument for idolatry. Whereas, one who understands the<br />
basic message of Islam and its implications would never agree to idolatry no matter how it  is<br />
rationalized.<br />
Those who have claimed divinity for themselves down through the ages have often based their<br />
claims on the mistaken belief that God is present in man. Taking one step further, they claim<br />
that  God  is more  present  in  them  than  in  the  rest  of  us,  and  that  other  humans  should<br />
Page 4 of 7<br />
therefore submit to them and worship them as God in person or as God concentrated within<br />
their persons. Similarly, those who have asserted the godhood of others after their deaths have<br />
found fertile ground among those who accept the false belief of God’s presence in man.<br />
It should be abundantly clear by now that one who has grasped the basic message of Islam and<br />
its  implications could never agree to worship another human being under any circumstance.<br />
God’s  religion,  in  essence,  is  a  clear  call  to  the worship  of  the Creator  and  the  rejection  of<br />
creation-worship in any form. This is the meaning of the motto of Islam:<br />
“Laa Ilaaha Ill Allah” (there is no God but Allah)<br />
The sincere declaration of this phrase and the acceptance of prophethood automatically bring<br />
one within the  fold of  Islam, and sincere belief  in  it guarantees one Paradise. Thus,  the  final<br />
Prophet of Islam (p.b.u.h) is reported to have said, “Any one who says: There is no God but<br />
Allah, and dies holding that (belief) will enter paradise.”<br />
Belief in this declaration of faith requires that one submit his/her will to God in the way taught<br />
by the prophets of God. It also requires the believer to give up the worship of false gods.<br />
The Message Of False Religions<br />
There  are  so many  sects,  cults,  religions,  philosophies,  and movements  in  the  world,  all  of<br />
which claim to be the right way or the only true path of God How can one determine which one<br />
is correct or whether, in fact, all are correct? One method by which the answer can be found is<br />
to  clear  away  the  superficial  differences  in  the  teachings  of  the  various  claimants  to  the<br />
ultimate  truth, and  identifies  the  central object  of worship upon which  they  call,  directly or<br />
indirectly. False religions all have in common one basic concept with regard to God they either<br />
claim that all men are gods, or that specific men were God, or that nature is God, or that God<br />
is a figment of man’s imagination.<br />
Thus, it may be stated that the basic message of false religion is that God may be worshipped<br />
in the form of His creation. False religions invite man to the worship of creation by calling the<br />
creation or some aspect of it God. For example, prophet Jesus invited his followers to worship<br />
God, but those who claim to be Jesus’  followers  today call people to worship Jesus, claiming<br />
that he was God.<br />
Buddha was a reformer who  introduced a number of humanistic principles  in  the  religion of<br />
India. He did not claim to be God, nor did he suggest to his followers that he be an object of<br />
worship. Yet today most Buddhists who are to be found outside of India have taken him to be<br />
God and they prostrate themselves to idols made in their perception of his likeness.<br />
By using the principle of identifying the object of worship, we can easily detect false religions<br />
and the contrived nature of their origin. As God said in the Qur’an:<br />
“That which you worship besides Him are only names<br />
and  you  and  your  forefathers  have  invented  for<br />
which  Allah  has  sent  down  no  authority:  the<br />
command  belongs  only  to  Allah  He  has  command<br />
that you worship Him; that is the right religion, but<br />
most men do not understand.” [Qur’an 12:40]<br />
It may be argued  that all religions  teach good  things, so why should  it matter which one we<br />
follow?  The  reply  is  that  all  false  religions  teach  the  greatest  evil  the  worship  of  creation.<br />
Creation-worship  is  the  greatest  sin  that man  can  commit  because  it  contradicts  the  very<br />
purpose of his creation. Man was created to worship God alone as Allah has explicitly stated in<br />
the Qur’an:<br />
“I have  only  created  jinns  and men,  that  they may<br />
worship Me” [Qur’an 51:56]<br />
Page 5 of 7<br />
Consequently , the worship of creation, which is the essence of idolatry is the only unforgivable<br />
sin. One who dies in this state of  idolatry, has sealed his  fate  in  the next life. This  is not an<br />
opinion, but a revealed fact stated by God in his final revelation to man:<br />
“Verily Allah will not  forgive  the  joining of partners<br />
with Him, but He may forgive (sins) less than that for<br />
whomsoever He wishes.” [Qur’an 4:48 and 116]<br />
Universality Of God’s Religion<br />
Since the consequences of following a false religion are so grave, the true religion of God must<br />
have  been  universally  understandable  and  universally  attainable  in  the  past  and  it  must<br />
continue eternally to be understandable and attainable  throughout  the entire world.  In other<br />
words, the true religion of God cannot be confined to any one people, place, or period of time.<br />
Nor is it logical that such a religion should impose conditions that have nothing to do with the<br />
relationship  of  man  with  God,  such  as  baptism,  or  belief  in  man  as  a  savior,  or  an<br />
intermediary. Within the central principle of Islam and its definition (the surrender of one’s will<br />
to God) lie the roots of Islam’s universality. Whenever man comes to the realization that God is<br />
one and distinct from His creation, and submits himself to God, he becomes a Muslim in body<br />
and spirit and is eligible for paradise.<br />
Consequently, anyone at any time in the most remote regions of the world can become Muslim,<br />
a follower of God’s religion, Islam, by merely rejecting  the worship of creation and  turning  to<br />
God alone. It should be noted, however, that in order to actually submit to God’s will, one must<br />
continually choose between right and wrong. Indeed, man is endowed by God with  the power<br />
not only  to distinguish  right  from wrong but also  to  choose  between  them.  These God-given<br />
powers carry with them an important responsibility, namely, that man is answerable to God for<br />
the choices he makes. It follows,  then,  that man should  try his utmost  to do good and avoid<br />
evil. These concepts are expressed in the final revelation as follows:<br />
“Verily, those who believe (in the Qur’an), and those<br />
who follow the Jewish faith, and the Christians, and<br />
the  Sabians  (angel-and-star-worshippers)  &#8211;  any  of<br />
these who believe in Allah and the Last Day and work<br />
righteousness  shall  have  their  reward  with  their<br />
Lord.  They  will  not  be  overcome  by  fear  or  grief.”<br />
[Qur’an 2:62]<br />
If, for whatever reason, they fail to accept the final message after it has been clearly explained<br />
to them, they will be in grave danger. The last Prophet said:<br />
“Whoever among the Christians and Jews hears of me but<br />
does not  affirm  his  belief  in what  I  brought  and  dies  in<br />
this  state  will  be  among  the  inhabitants  of  hell.”  (Sahih<br />
Muslim [English Translation], Vol.1 P.91 No, 284)<br />
Recognition Of God<br />
The question which arises here is : How can all people be expected to believe in  the one true<br />
God, given their varying backgrounds, societies and cultures? For people to be held responsible<br />
for worshipping the one true God, they all need to have access to knowledge of Him. The final<br />
revelation teaches that all humans being have the recognition of the one true God imprinted on<br />
their souls as a part of their very nature with which they are created.<br />
In the seventh chapter of the Qur’an (Al-A’raaf, verses 172-173), God explained that when He<br />
created  Adam  He  caused  all  of  Adam’s  descendants  to  come  into  existence  and  He  took  a<br />
pledge from them saying:<br />
Page 6 of 7<br />
“‘Am  I  not  your  Lord?’  To  which  they  all  replied,<br />
‘Yes, we testify to it’”<br />
Allah then explained why He had all of mankind bear witness that He is their creator and the<br />
only true God worthy of worship. He said:<br />
“That was  in case  you  (mankind)  should  say  on  the<br />
day  of Resurrection,  ‘Verily we were  unaware  of  all<br />
this’” [Qur’an 7:172]<br />
That is to say, we cannot claim on that day that we had no idea that Allah, was our God and<br />
that no one told us that we were only supposed to worship Allah alone. Allah went on to further<br />
explain that:<br />
“It was also in case you should say, ‘Certainly it was<br />
our ancestors who made partners (with Allah) and we<br />
are only their descendants; will you then destroy us<br />
for what those liars did?’” [Qur’an 7:173]<br />
Thus, every child  is born with a natural belief  in God and an  in-born  inclination  to worship<br />
Him alone. This in-born belief and inclination is called in Arabic the “Fitrah“.<br />
The  Prophet  Muhammad  reported  that  Allah  said,  “I  created  my  servants  in  the  right<br />
religion, but devils made them go astray.” The Prophet also said, “Each child is born in a<br />
state of Fitrah. Then his parents make him a Jew, Christian or a Zoroastrian.” If the child<br />
were  left  alone, he would worship God  in his  own way,  but  all  children  are  affected  by  the<br />
environment. So, just as the child submits to the physical laws, which Allah has  imposed on<br />
nature, in the same way his soul also submits naturally to the fact that Allah is his Lord and<br />
Creator. But,  if his  parents  try  to make him  follow  a  different  path,  the  child  is not  strong<br />
enough in the early stages of his life to resist or oppose the will of his parents. In such cases,<br />
the religion, which the child follows, is one of custom and upbringing, and God does not hold<br />
him to account or punish him for his religion up to a certain stage of his life.<br />
The Signs Of God<br />
Throughout people’s  lives,  from  childhood until  the  time  they die,  signs of  the one  and  only<br />
true God are shown to them in all regions of the earth and in their own souls, until it becomes<br />
clear that there is only one true God (Allah). God says in the Qur’an:<br />
“We will show them our signs In the furthest regions<br />
(of  the  earth)  and  in  their  souls,  until  it  becomes<br />
clear to them that this is the truth.” [Qur’an 41:53]<br />
The following is an example of God revealing by a sign to one man the error of his idol-worship.<br />
In  the  south-eastern  region of  the Amazon  jungle  in Brazil, South America, a primitive  tribe<br />
erected  a  new  hut  to  house  their man-idol  Skwatch,  representing  the  supreme  God  of  all<br />
creation. The following day a young man entered the hut to pay homage to the God, and while<br />
he was in prostration to what he had been taught was his Creator and Sustainer, a mangy old<br />
flea-ridden dog slunk into the hut. The young man looked up in time to see the dog lift his hind<br />
leg and pass urine on the idol.<br />
Outraged, the youth chased the dog out of the temple; but when his rage died down he realized<br />
that the idol could not be the Lord of the Universe. God must be elsewhere, he concluded. As<br />
strange as it may seem, the dog urinated on the idol was a sign from God for that young man.<br />
This sign contained  the divine message  that what he was worshipping was  false.  It  liberated<br />
from slavishly following his traditionally learned worship of a false god. As a result,  this man<br />
was given a choice: either to seek the true god or to continue in the error of his ways.<br />
Allah mentions Prophet Abraham’s quest for God as an example of how  those who  follow His<br />
signs will be rightly guided:<br />
Page 7 of 7<br />
“So  also  did  we  show  Abraham  the  power  and  the<br />
Laws  of  the  heavens  and  the  earth  that  he  might<br />
(with understanding) have certitude.  When the night<br />
covered him over, he saw a star. He said: ‘This is my<br />
Lord.’ But when it set, he said: ‘I love not those that<br />
set’   When  he  saw  the moon  rising  in  splendor,  he<br />
said:  ‘This  is my  Lord.’ But when  the moon  set, he<br />
said:  ‘Unless  my  Lord  guide  me,  I  shall  surely  be<br />
among those who go astray.’  When he saw the rising<br />
sun in splendor, he said: ‘This is my Lord this is the<br />
greatest  (of  all).’  But when  the  sun  set,  he  said;  ‘O<br />
my people I am indeed free from your (guilt) of giving<br />
partners to Allah.  For me, I have set my face, firmly<br />
and truly, towards Him who created the heavens and<br />
the  earth,  and  never  shall  I  give  partners  to  Allah”<br />
[Qur’an 6:75-79]<br />
As was mentioned earlier, prophets have been sent to every nation and tribe to support man’s<br />
natural belief in God and man’s in-born inclination to worship Him, as well as to reinforce the<br />
divine  truth  in  the daily  signs  revealed by God. Although much of  these prophets’  teachings<br />
became distorted, portions revealing their God-inspired messages have remained untainted and<br />
have served  to guide mankind in  the choice between  right and wrong. The  influence of Godinspired<br />
messages  down  through  the  ages  can  be  seen  in  the  “Ten  Commandments”  of<br />
Judaism’s  Torah  which  were  later  adopted  into  Christianity’s  teachings,  as  well  as  in  the<br />
existence  of  laws  against  murder,  stealing  and  adultery  in  most  societies  throughout  the<br />
ancient and modern world.<br />
As a result of God’s signs to mankind through the ages combined with His revelation through<br />
His prophets, all mankind has been given a chance to recognize the one only true God.<br />
Consequently, every soul will be held accountable for its belief in God and its acceptance of the<br />
true religion of God, namely Islam, which means total submission to the will of Allah.<br />
Conclusion<br />
The preceding presentation has demonstrated that the name of the religion of Islam expresses<br />
Islam’s most central principle, submission to God, and that the name “Islam” was chosen not<br />
by man, but by God, according  to  the holy  scriptures of  Islam.  It has also been  shown  that<br />
Islam alone teaches the uniqueness of God and His attributes and enjoins the worship of God<br />
alone without intermediaries. Finally, due to the divinely instilled inclination of man to worship<br />
God  and  the  signs  revealed  by  God  throughout  the  ages  to  each  individual,  Islam may  be<br />
achieved by all men at all times.<br />
In  short,  the  significance  of  the  name  Islam  (submission  to  God),  Islam’s  fundamental<br />
acknowledgment of the uniqueness of God and Islam’s accessibility to all mankind at all times<br />
convincingly support Islam’s claim that from the beginning of time in whatever language it was<br />
expressed, Islam alone has been, and will be the true religion of God.<br />
In conclusion we ask Allah, the exalted, to keep us on the right path to which He has guided<br />
us, and to bestow on us His blessings and mercy, for He is indeed the Most Merciful. Praise be<br />
to Allah, the Lord of the worlds, and peace and blessings be on prophet Muhammad and on all<br />
the prophets of God and their righteous followers.Page 1 of 7<br />
The True Religion of God<br />
By Dr. Abu Ameenah Bilal Philips &#8211; 3rd Edition, 1994<br />
Which Is The True Religion Of God?<br />
Each person  is born in a circumstance which  is not of his own  choosing. The  religion of his<br />
family or the ideology of the state is thrust upon him from the very beginning of his existence<br />
in this world. By the time he reaches his teens, he is usually fully brain-washed into believing<br />
that  the  beliefs  of  his  particular  society  are  the  correct  beliefs  that  everyone  should  have.<br />
However, when  some  people mature  and  are  exposed  to  other  belief-systems,  they  begin  to<br />
question the validity of their own beliefs. The seekers of truth often reach a point of confusion<br />
upon realizing that each and every religion, sect, ideology and philosophy claims to be the one<br />
and only correct way for man. Indeed, they all encourage people to do good. So, which one is<br />
right?  They  cannot  all  be  right  since  each  claims  all  others  are wrong.  Then  how  does  the<br />
seeker of truth choose the right way?<br />
God gave us all minds and intellects to enable us to make this crucial decision. It is the most<br />
important  decision  in  the  life  of  a human  being. Upon  it  depends his  future, Consequently,<br />
each  and  every  one of us must  examine  dispassionately  the  evidence  presented  and  choose<br />
what appears to be right until further evidence arises.<br />
Like every other religion or philosophy,  Islam also claims  to be  the one and only  true way  to<br />
God. In this respect it is no different from other systems. This booklet intends to provide some<br />
evidence for the validity of that claim. However, it must always be kept in mind that one can<br />
only determine the true path by putting aside emotions and prejudices, which often blind us to<br />
reality.  Then,  and  only  then, will we  be  able  to use  our God-given  intelligence  and make  a<br />
rational and correct decision.<br />
There are several arguments, which may be advanced to support Islam’s claim to be the  true<br />
religion of God. The following are only three of the most obvious. The first argument is based on<br />
the divine origin of the names of  the religion and  the comprehensiveness of  its meaning. The<br />
second  deals  with  the  unique  and  uncomplicated  teachings  concerning  the  relationship<br />
between  God,  man,  and  creation.  The  third  argument  derives  from  the  fact  that  Islam  is<br />
universally attainable by all men at all  times. These are  the  three basic  components of what<br />
logic and reason dictate necessary for a religion to be considered the true religion of God. The<br />
following pages will develop these concepts in some detail.<br />
The Religion’s Name<br />
The  first  thing  that one  should  know  and  clearly understand  about  Islam  is what  the word<br />
‘Islam” itself means. The Arabic word “Islam” means the submission or surrender of one’s will<br />
to the only true God, known in Arabic as “Allah”. One who submits his will to God is termed in<br />
Arabic a  “Muslim”. The religion of  Islam  is not named after a person or a people, nor was  it<br />
decided by  a  later  generation  of man,  as  in  the  case  of Christianity which was named  after<br />
Jesus Christ, Buddhism after Gautama Buddha, Confucianism after Confucius, Marxism after<br />
Karl Marx, Judaism after the tribe of Judah and Hinduism after the Hindus. Islam (submission<br />
to the will of God) is the religion which was given to Adam, the first man and the first prophet<br />
of God, and it was the religion of all the prophets sent by Allah to mankind. Further its name<br />
was chosen by God Himself and clearly mentioned in the final scripture which He revealed to<br />
man. In that final revelation, called in Arabic the Qur’an Allah states the following:<br />
“This  day  have  I  perfected  your  religion  for  you,<br />
completed My favour upon you, and have chosen for<br />
you Islam as your religion.” [Qur’an 5:3]<br />
“If  anyone  desires  a  religion  other  than  Islam<br />
(submission  to  God),  never  will  it  be  accepted  of<br />
Him.” [Qur’an 3:85]<br />
Page 2 of 7<br />
Hence, Islam does not claim to be a new religion brought by Prophet Mohammed into Arabia in<br />
the  seventh  century, but  rather  to be a  re-expression  in  its  final  form of  the  true  religion  of<br />
Almighty God, Allah, as it was originally revealed to Adam and subsequent prophets.<br />
At this point we might comment briefly on two other religions that claim to be  the  true path.<br />
Nowhere in the Bible will you find God revealing to Prophet Moses’ people or their descendants<br />
that  their religion is  called Judaism, or  to  the  followers of Christ  that  their  religion  is called<br />
Christianity. In other words,  the names  “Judaism” and  “Christianity” had no divine origin or<br />
approval.  It was  not  until  long  after  his  departure  that  the  name Christianity was  given  to<br />
Jesus’ religion.<br />
What, then, was Jesus’ religion in actual fact, as distinct from its name? (Both the name Jesus<br />
and  the name Christ are derived  from Hebrew words,  through Greek and Latin. Jesus  is  the<br />
English and Latin form of the Greek Iesous, which in Hebrew Is Yeshua or Yehoshua’ (Joshua).<br />
The Greek word Christos is a translation of the Hebrew [for] &#8216;messiah&#8217;, which is a title meaning<br />
&#8216;the  anointed&#8217;.) His  religion  was  reflected  in  his  teachings,  which  he  urged  his  followers  to<br />
accept as guiding principles in their relationship with God. In Islam, Jesus is a prophet sent by<br />
Allah and his Arabic name is Eesa. Like the prophets before him, he called upon the people to<br />
surrender their will to the will of God (which is what Islam stands for). For example, in the New<br />
Testament it is stated that Jesus taught his followers to pray to God as follows:<br />
“Our father in heaven, hallowed be your name, may your<br />
will  be  done  on  earth  as  it  is  in  heaven.”  [Luke<br />
11:2/Matthew 6:9-10]<br />
This concept was emphasised by Jesus in a number of his statements recorded in the Gospels.<br />
He  taught,  for  example,  that  only  those who  submitted would  inherit  paradise.    Jesus  also<br />
pointed out that he himself submitted to the will of God.<br />
“None of those who call me ‘Lord’ will enter the kingdom<br />
of God, but only the one who does the will of my Father<br />
in heaven.” [Matthew 7:21]<br />
“I cannot do anything of myself I judge as I hear and my<br />
judgment  is  honest  because  I  am  not  seeking my  own<br />
will but the will of Him who sent me.” [John 5:30]<br />
There are many reports  in  the Gospels which show  that Jesus made  it  clear  to his  followers<br />
that he was not the one true God. For example, when speaking about the final Hour, he said:<br />
“No-one  knows  about  the  day  or  hour,  not  even  the<br />
angels  in  heaven,  not  the  son,  but  only  the  Father.”<br />
[Mark 13:32]<br />
Thus, Jesus like the prophets before him and the one who came after him, taught the religion<br />
of Islam: submission to the will of the one true God.<br />
God And Creation<br />
Since  the  total  submission of one’s will  to God  represents  the  essence of worship,  the  basic<br />
message  of  God’s  divine  religion,  Islam,  is  the  worship  of  God  alone.  It  also  requires  the<br />
avoidance of worship directed to any person, place or thing other  than God. Since everything<br />
other  than God,  the creator of all  the  things,  is God’s creation,  it may be said  that  Islam,  in<br />
essence, calls man away from worship of creation and invites him to worship only his Creator.<br />
He is the only one deserving of man’s worship, because it is only by His will that prayers are<br />
answered.<br />
Page 3 of 7<br />
Accordingly,  if a man prays  to a  tree and his prayers are answered,  it  is not  the  tree which<br />
answers  his  prayers  but God,  who  allows  the  circumstances  prayed  for  to  take  place.  One<br />
might  say,  “That  is  obvious”.  However,  to  tree-worshippers,  it  might  not  be  so.  Similarly,<br />
prayers  to  Jesus,  Buddha,  or  Krishna  or  Saint  Christopher,  or  Saint  Jude  or  even  to<br />
Muhammad,  are  not  answered  by  them,  but  are  answered  by  God.  Jesus  did  not  tell  his<br />
followers to worship him but to worship God, as the Quran states:<br />
“And  behold!  Allah  will  say:  ‘O  Jesus,  the  son  of<br />
Mary!  Did  you  say  to  men,  worship  me  and  my<br />
mother as gods besides Allah?, He will say: “Glory to<br />
you, I could never say what I had no right  (to say).”<br />
[Qur’an 5:118]<br />
Nor did Jesus worship himself when he worshipped, but rather he worshipped God. And Jesus<br />
was reported in the Gospels to have said,<br />
“It is written: &#8216;Worship the Lord your God and serve Him<br />
only.’” [Luke 4:8]<br />
This basic principle  is  contained  in  the opening  chapter of  the Qur’an, known as Soorah al-<br />
Faatihah, verse 4:<br />
“you alone do we worship and from you alone do we<br />
seek help.”<br />
Elsewhere, in the final book of revelation, the Quran, God also said:<br />
“And  you  Lord  says:  ‘Call  on Me  and  I  will  answer<br />
your (prayer).’” [Qur’an 40:60]<br />
It is worth emphasizing that the basic message of Islam (namely, the worship of God alone) also<br />
proclaims that God and His creation are distinctly different entities. God is neither equal to His<br />
creation nor a part of it, nor is His creation equal to Him or a part of Him.<br />
This might seem obvious, but man’s worship of  creation,  instead of  the Creator  is  to a  large<br />
degree based on ignorance, or neglect, of this concept. It is the belief that the essence of God is<br />
everywhere  in His  creation  or  that His  divine  being  is  or was  present  in  some  parts  of His<br />
creation, which has provided justification for the worship of God’s creation and naming it the<br />
worship  of  God.  However,  the message  of  Islam,  as  brought  by  the  prophets  of  God,  is  to<br />
worship only God and to avoid the worship of His creation either directly or indirectly.<br />
In the Qur’an God clearly states:<br />
“For  we  assuredly  sent  amongst  every  people  a<br />
prophet,  with  the  command Worship Me  and  avoid<br />
false Gods.” [Qur’an 16:36]<br />
When idol worshippers are questioned as to why they bow down to idols created by men, the<br />
invariable  reply  is  that  they  are  not  actually worshipping  the  stone  image,  but God  who  is<br />
present within it. They claim that the stone idol is only a focal point for God’s essence and is<br />
not in itself God! One who has accepted the concept of God being present in any way within His<br />
creation will be obliged to accept this argument for idolatry. Whereas, one who understands the<br />
basic message of Islam and its implications would never agree to idolatry no matter how it  is<br />
rationalized.<br />
Those who have claimed divinity for themselves down through the ages have often based their<br />
claims on the mistaken belief that God is present in man. Taking one step further, they claim<br />
that  God  is more  present  in  them  than  in  the  rest  of  us,  and  that  other  humans  should<br />
Page 4 of 7<br />
therefore submit to them and worship them as God in person or as God concentrated within<br />
their persons. Similarly, those who have asserted the godhood of others after their deaths have<br />
found fertile ground among those who accept the false belief of God’s presence in man.<br />
It should be abundantly clear by now that one who has grasped the basic message of Islam and<br />
its  implications could never agree to worship another human being under any circumstance.<br />
God’s  religion,  in  essence,  is  a  clear  call  to  the worship  of  the Creator  and  the  rejection  of<br />
creation-worship in any form. This is the meaning of the motto of Islam:<br />
“Laa Ilaaha Ill Allah” (there is no God but Allah)<br />
The sincere declaration of this phrase and the acceptance of prophethood automatically bring<br />
one within the  fold of  Islam, and sincere belief  in  it guarantees one Paradise. Thus,  the  final<br />
Prophet of Islam (p.b.u.h) is reported to have said, “Any one who says: There is no God but<br />
Allah, and dies holding that (belief) will enter paradise.”<br />
Belief in this declaration of faith requires that one submit his/her will to God in the way taught<br />
by the prophets of God. It also requires the believer to give up the worship of false gods.<br />
The Message Of False Religions<br />
There  are  so many  sects,  cults,  religions,  philosophies,  and movements  in  the  world,  all  of<br />
which claim to be the right way or the only true path of God How can one determine which one<br />
is correct or whether, in fact, all are correct? One method by which the answer can be found is<br />
to  clear  away  the  superficial  differences  in  the  teachings  of  the  various  claimants  to  the<br />
ultimate  truth, and  identifies  the  central object  of worship upon which  they  call,  directly or<br />
indirectly. False religions all have in common one basic concept with regard to God they either<br />
claim that all men are gods, or that specific men were God, or that nature is God, or that God<br />
is a figment of man’s imagination.<br />
Thus, it may be stated that the basic message of false religion is that God may be worshipped<br />
in the form of His creation. False religions invite man to the worship of creation by calling the<br />
creation or some aspect of it God. For example, prophet Jesus invited his followers to worship<br />
God, but those who claim to be Jesus’  followers  today call people to worship Jesus, claiming<br />
that he was God.<br />
Buddha was a reformer who  introduced a number of humanistic principles  in  the  religion of<br />
India. He did not claim to be God, nor did he suggest to his followers that he be an object of<br />
worship. Yet today most Buddhists who are to be found outside of India have taken him to be<br />
God and they prostrate themselves to idols made in their perception of his likeness.<br />
By using the principle of identifying the object of worship, we can easily detect false religions<br />
and the contrived nature of their origin. As God said in the Qur’an:<br />
“That which you worship besides Him are only names<br />
and  you  and  your  forefathers  have  invented  for<br />
which  Allah  has  sent  down  no  authority:  the<br />
command  belongs  only  to  Allah  He  has  command<br />
that you worship Him; that is the right religion, but<br />
most men do not understand.” [Qur’an 12:40]<br />
It may be argued  that all religions  teach good  things, so why should  it matter which one we<br />
follow?  The  reply  is  that  all  false  religions  teach  the  greatest  evil  the  worship  of  creation.<br />
Creation-worship  is  the  greatest  sin  that man  can  commit  because  it  contradicts  the  very<br />
purpose of his creation. Man was created to worship God alone as Allah has explicitly stated in<br />
the Qur’an:<br />
“I have  only  created  jinns  and men,  that  they may<br />
worship Me” [Qur’an 51:56]<br />
Page 5 of 7<br />
Consequently , the worship of creation, which is the essence of idolatry is the only unforgivable<br />
sin. One who dies in this state of  idolatry, has sealed his  fate  in  the next life. This  is not an<br />
opinion, but a revealed fact stated by God in his final revelation to man:<br />
“Verily Allah will not  forgive  the  joining of partners<br />
with Him, but He may forgive (sins) less than that for<br />
whomsoever He wishes.” [Qur’an 4:48 and 116]<br />
Universality Of God’s Religion<br />
Since the consequences of following a false religion are so grave, the true religion of God must<br />
have  been  universally  understandable  and  universally  attainable  in  the  past  and  it  must<br />
continue eternally to be understandable and attainable  throughout  the entire world.  In other<br />
words, the true religion of God cannot be confined to any one people, place, or period of time.<br />
Nor is it logical that such a religion should impose conditions that have nothing to do with the<br />
relationship  of  man  with  God,  such  as  baptism,  or  belief  in  man  as  a  savior,  or  an<br />
intermediary. Within the central principle of Islam and its definition (the surrender of one’s will<br />
to God) lie the roots of Islam’s universality. Whenever man comes to the realization that God is<br />
one and distinct from His creation, and submits himself to God, he becomes a Muslim in body<br />
and spirit and is eligible for paradise.<br />
Consequently, anyone at any time in the most remote regions of the world can become Muslim,<br />
a follower of God’s religion, Islam, by merely rejecting  the worship of creation and  turning  to<br />
God alone. It should be noted, however, that in order to actually submit to God’s will, one must<br />
continually choose between right and wrong. Indeed, man is endowed by God with  the power<br />
not only  to distinguish  right  from wrong but also  to  choose  between  them.  These God-given<br />
powers carry with them an important responsibility, namely, that man is answerable to God for<br />
the choices he makes. It follows,  then,  that man should  try his utmost  to do good and avoid<br />
evil. These concepts are expressed in the final revelation as follows:<br />
“Verily, those who believe (in the Qur’an), and those<br />
who follow the Jewish faith, and the Christians, and<br />
the  Sabians  (angel-and-star-worshippers)  &#8211;  any  of<br />
these who believe in Allah and the Last Day and work<br />
righteousness  shall  have  their  reward  with  their<br />
Lord.  They  will  not  be  overcome  by  fear  or  grief.”<br />
[Qur’an 2:62]<br />
If, for whatever reason, they fail to accept the final message after it has been clearly explained<br />
to them, they will be in grave danger. The last Prophet said:<br />
“Whoever among the Christians and Jews hears of me but<br />
does not  affirm  his  belief  in what  I  brought  and  dies  in<br />
this  state  will  be  among  the  inhabitants  of  hell.”  (Sahih<br />
Muslim [English Translation], Vol.1 P.91 No, 284)<br />
Recognition Of God<br />
The question which arises here is : How can all people be expected to believe in  the one true<br />
God, given their varying backgrounds, societies and cultures? For people to be held responsible<br />
for worshipping the one true God, they all need to have access to knowledge of Him. The final<br />
revelation teaches that all humans being have the recognition of the one true God imprinted on<br />
their souls as a part of their very nature with which they are created.<br />
In the seventh chapter of the Qur’an (Al-A’raaf, verses 172-173), God explained that when He<br />
created  Adam  He  caused  all  of  Adam’s  descendants  to  come  into  existence  and  He  took  a<br />
pledge from them saying:<br />
Page 6 of 7<br />
“‘Am  I  not  your  Lord?’  To  which  they  all  replied,<br />
‘Yes, we testify to it’”<br />
Allah then explained why He had all of mankind bear witness that He is their creator and the<br />
only true God worthy of worship. He said:<br />
“That was  in case  you  (mankind)  should  say  on  the<br />
day  of Resurrection,  ‘Verily we were  unaware  of  all<br />
this’” [Qur’an 7:172]<br />
That is to say, we cannot claim on that day that we had no idea that Allah, was our God and<br />
that no one told us that we were only supposed to worship Allah alone. Allah went on to further<br />
explain that:<br />
“It was also in case you should say, ‘Certainly it was<br />
our ancestors who made partners (with Allah) and we<br />
are only their descendants; will you then destroy us<br />
for what those liars did?’” [Qur’an 7:173]<br />
Thus, every child  is born with a natural belief  in God and an  in-born  inclination  to worship<br />
Him alone. This in-born belief and inclination is called in Arabic the “Fitrah“.<br />
The  Prophet  Muhammad  reported  that  Allah  said,  “I  created  my  servants  in  the  right<br />
religion, but devils made them go astray.” The Prophet also said, “Each child is born in a<br />
state of Fitrah. Then his parents make him a Jew, Christian or a Zoroastrian.” If the child<br />
were  left  alone, he would worship God  in his  own way,  but  all  children  are  affected  by  the<br />
environment. So, just as the child submits to the physical laws, which Allah has  imposed on<br />
nature, in the same way his soul also submits naturally to the fact that Allah is his Lord and<br />
Creator. But,  if his  parents  try  to make him  follow  a  different  path,  the  child  is not  strong<br />
enough in the early stages of his life to resist or oppose the will of his parents. In such cases,<br />
the religion, which the child follows, is one of custom and upbringing, and God does not hold<br />
him to account or punish him for his religion up to a certain stage of his life.<br />
The Signs Of God<br />
Throughout people’s  lives,  from  childhood until  the  time  they die,  signs of  the one  and  only<br />
true God are shown to them in all regions of the earth and in their own souls, until it becomes<br />
clear that there is only one true God (Allah). God says in the Qur’an:<br />
“We will show them our signs In the furthest regions<br />
(of  the  earth)  and  in  their  souls,  until  it  becomes<br />
clear to them that this is the truth.” [Qur’an 41:53]<br />
The following is an example of God revealing by a sign to one man the error of his idol-worship.<br />
In  the  south-eastern  region of  the Amazon  jungle  in Brazil, South America, a primitive  tribe<br />
erected  a  new  hut  to  house  their man-idol  Skwatch,  representing  the  supreme  God  of  all<br />
creation. The following day a young man entered the hut to pay homage to the God, and while<br />
he was in prostration to what he had been taught was his Creator and Sustainer, a mangy old<br />
flea-ridden dog slunk into the hut. The young man looked up in time to see the dog lift his hind<br />
leg and pass urine on the idol.<br />
Outraged, the youth chased the dog out of the temple; but when his rage died down he realized<br />
that the idol could not be the Lord of the Universe. God must be elsewhere, he concluded. As<br />
strange as it may seem, the dog urinated on the idol was a sign from God for that young man.<br />
This sign contained  the divine message  that what he was worshipping was  false.  It  liberated<br />
from slavishly following his traditionally learned worship of a false god. As a result,  this man<br />
was given a choice: either to seek the true god or to continue in the error of his ways.<br />
Allah mentions Prophet Abraham’s quest for God as an example of how  those who  follow His<br />
signs will be rightly guided:<br />
Page 7 of 7<br />
“So  also  did  we  show  Abraham  the  power  and  the<br />
Laws  of  the  heavens  and  the  earth  that  he  might<br />
(with understanding) have certitude.  When the night<br />
covered him over, he saw a star. He said: ‘This is my<br />
Lord.’ But when it set, he said: ‘I love not those that<br />
set’   When  he  saw  the moon  rising  in  splendor,  he<br />
said:  ‘This  is my  Lord.’ But when  the moon  set, he<br />
said:  ‘Unless  my  Lord  guide  me,  I  shall  surely  be<br />
among those who go astray.’  When he saw the rising<br />
sun in splendor, he said: ‘This is my Lord this is the<br />
greatest  (of  all).’  But when  the  sun  set,  he  said;  ‘O<br />
my people I am indeed free from your (guilt) of giving<br />
partners to Allah.  For me, I have set my face, firmly<br />
and truly, towards Him who created the heavens and<br />
the  earth,  and  never  shall  I  give  partners  to  Allah”<br />
[Qur’an 6:75-79]<br />
As was mentioned earlier, prophets have been sent to every nation and tribe to support man’s<br />
natural belief in God and man’s in-born inclination to worship Him, as well as to reinforce the<br />
divine  truth  in  the daily  signs  revealed by God. Although much of  these prophets’  teachings<br />
became distorted, portions revealing their God-inspired messages have remained untainted and<br />
have served  to guide mankind in  the choice between  right and wrong. The  influence of Godinspired<br />
messages  down  through  the  ages  can  be  seen  in  the  “Ten  Commandments”  of<br />
Judaism’s  Torah  which  were  later  adopted  into  Christianity’s  teachings,  as  well  as  in  the<br />
existence  of  laws  against  murder,  stealing  and  adultery  in  most  societies  throughout  the<br />
ancient and modern world.<br />
As a result of God’s signs to mankind through the ages combined with His revelation through<br />
His prophets, all mankind has been given a chance to recognize the one only true God.<br />
Consequently, every soul will be held accountable for its belief in God and its acceptance of the<br />
true religion of God, namely Islam, which means total submission to the will of Allah.<br />
Conclusion<br />
The preceding presentation has demonstrated that the name of the religion of Islam expresses<br />
Islam’s most central principle, submission to God, and that the name “Islam” was chosen not<br />
by man, but by God, according  to  the holy  scriptures of  Islam.  It has also been  shown  that<br />
Islam alone teaches the uniqueness of God and His attributes and enjoins the worship of God<br />
alone without intermediaries. Finally, due to the divinely instilled inclination of man to worship<br />
God  and  the  signs  revealed  by  God  throughout  the  ages  to  each  individual,  Islam may  be<br />
achieved by all men at all times.<br />
In  short,  the  significance  of  the  name  Islam  (submission  to  God),  Islam’s  fundamental<br />
acknowledgment of the uniqueness of God and Islam’s accessibility to all mankind at all times<br />
convincingly support Islam’s claim that from the beginning of time in whatever language it was<br />
expressed, Islam alone has been, and will be the true religion of God.<br />
In conclusion we ask Allah, the exalted, to keep us on the right path to which He has guided<br />
us, and to bestow on us His blessings and mercy, for He is indeed the Most Merciful. Praise be<br />
to Allah, the Lord of the worlds, and peace and blessings be on prophet Muhammad and on all<br />
the prophets of God and their righteous followers.Page 1 of 7<br />
The True Religion of God<br />
By Dr. Abu Ameenah Bilal Philips &#8211; 3rd Edition, 1994<br />
Which Is The True Religion Of God?<br />
Each person  is born in a circumstance which  is not of his own  choosing. The  religion of his<br />
family or the ideology of the state is thrust upon him from the very beginning of his existence<br />
in this world. By the time he reaches his teens, he is usually fully brain-washed into believing<br />
that  the  beliefs  of  his  particular  society  are  the  correct  beliefs  that  everyone  should  have.<br />
However, when  some  people mature  and  are  exposed  to  other  belief-systems,  they  begin  to<br />
question the validity of their own beliefs. The seekers of truth often reach a point of confusion<br />
upon realizing that each and every religion, sect, ideology and philosophy claims to be the one<br />
and only correct way for man. Indeed, they all encourage people to do good. So, which one is<br />
right?  They  cannot  all  be  right  since  each  claims  all  others  are wrong.  Then  how  does  the<br />
seeker of truth choose the right way?<br />
God gave us all minds and intellects to enable us to make this crucial decision. It is the most<br />
important  decision  in  the  life  of  a human  being. Upon  it  depends his  future, Consequently,<br />
each  and  every  one of us must  examine  dispassionately  the  evidence  presented  and  choose<br />
what appears to be right until further evidence arises.<br />
Like every other religion or philosophy,  Islam also claims  to be  the one and only  true way  to<br />
God. In this respect it is no different from other systems. This booklet intends to provide some<br />
evidence for the validity of that claim. However, it must always be kept in mind that one can<br />
only determine the true path by putting aside emotions and prejudices, which often blind us to<br />
reality.  Then,  and  only  then, will we  be  able  to use  our God-given  intelligence  and make  a<br />
rational and correct decision.<br />
There are several arguments, which may be advanced to support Islam’s claim to be the  true<br />
religion of God. The following are only three of the most obvious. The first argument is based on<br />
the divine origin of the names of  the religion and  the comprehensiveness of  its meaning. The<br />
second  deals  with  the  unique  and  uncomplicated  teachings  concerning  the  relationship<br />
between  God,  man,  and  creation.  The  third  argument  derives  from  the  fact  that  Islam  is<br />
universally attainable by all men at all  times. These are  the  three basic  components of what<br />
logic and reason dictate necessary for a religion to be considered the true religion of God. The<br />
following pages will develop these concepts in some detail.<br />
The Religion’s Name<br />
The  first  thing  that one  should  know  and  clearly understand  about  Islam  is what  the word<br />
‘Islam” itself means. The Arabic word “Islam” means the submission or surrender of one’s will<br />
to the only true God, known in Arabic as “Allah”. One who submits his will to God is termed in<br />
Arabic a  “Muslim”. The religion of  Islam  is not named after a person or a people, nor was  it<br />
decided by  a  later  generation  of man,  as  in  the  case  of Christianity which was named  after<br />
Jesus Christ, Buddhism after Gautama Buddha, Confucianism after Confucius, Marxism after<br />
Karl Marx, Judaism after the tribe of Judah and Hinduism after the Hindus. Islam (submission<br />
to the will of God) is the religion which was given to Adam, the first man and the first prophet<br />
of God, and it was the religion of all the prophets sent by Allah to mankind. Further its name<br />
was chosen by God Himself and clearly mentioned in the final scripture which He revealed to<br />
man. In that final revelation, called in Arabic the Qur’an Allah states the following:<br />
“This  day  have  I  perfected  your  religion  for  you,<br />
completed My favour upon you, and have chosen for<br />
you Islam as your religion.” [Qur’an 5:3]<br />
“If  anyone  desires  a  religion  other  than  Islam<br />
(submission  to  God),  never  will  it  be  accepted  of<br />
Him.” [Qur’an 3:85]<br />
Page 2 of 7<br />
Hence, Islam does not claim to be a new religion brought by Prophet Mohammed into Arabia in<br />
the  seventh  century, but  rather  to be a  re-expression  in  its  final  form of  the  true  religion  of<br />
Almighty God, Allah, as it was originally revealed to Adam and subsequent prophets.<br />
At this point we might comment briefly on two other religions that claim to be  the  true path.<br />
Nowhere in the Bible will you find God revealing to Prophet Moses’ people or their descendants<br />
that  their religion is  called Judaism, or  to  the  followers of Christ  that  their  religion  is called<br />
Christianity. In other words,  the names  “Judaism” and  “Christianity” had no divine origin or<br />
approval.  It was  not  until  long  after  his  departure  that  the  name Christianity was  given  to<br />
Jesus’ religion.<br />
What, then, was Jesus’ religion in actual fact, as distinct from its name? (Both the name Jesus<br />
and  the name Christ are derived  from Hebrew words,  through Greek and Latin. Jesus  is  the<br />
English and Latin form of the Greek Iesous, which in Hebrew Is Yeshua or Yehoshua’ (Joshua).<br />
The Greek word Christos is a translation of the Hebrew [for] &#8216;messiah&#8217;, which is a title meaning<br />
&#8216;the  anointed&#8217;.) His  religion  was  reflected  in  his  teachings,  which  he  urged  his  followers  to<br />
accept as guiding principles in their relationship with God. In Islam, Jesus is a prophet sent by<br />
Allah and his Arabic name is Eesa. Like the prophets before him, he called upon the people to<br />
surrender their will to the will of God (which is what Islam stands for). For example, in the New<br />
Testament it is stated that Jesus taught his followers to pray to God as follows:<br />
“Our father in heaven, hallowed be your name, may your<br />
will  be  done  on  earth  as  it  is  in  heaven.”  [Luke<br />
11:2/Matthew 6:9-10]<br />
This concept was emphasised by Jesus in a number of his statements recorded in the Gospels.<br />
He  taught,  for  example,  that  only  those who  submitted would  inherit  paradise.    Jesus  also<br />
pointed out that he himself submitted to the will of God.<br />
“None of those who call me ‘Lord’ will enter the kingdom<br />
of God, but only the one who does the will of my Father<br />
in heaven.” [Matthew 7:21]<br />
“I cannot do anything of myself I judge as I hear and my<br />
judgment  is  honest  because  I  am  not  seeking my  own<br />
will but the will of Him who sent me.” [John 5:30]<br />
There are many reports  in  the Gospels which show  that Jesus made  it  clear  to his  followers<br />
that he was not the one true God. For example, when speaking about the final Hour, he said:<br />
“No-one  knows  about  the  day  or  hour,  not  even  the<br />
angels  in  heaven,  not  the  son,  but  only  the  Father.”<br />
[Mark 13:32]<br />
Thus, Jesus like the prophets before him and the one who came after him, taught the religion<br />
of Islam: submission to the will of the one true God.<br />
God And Creation<br />
Since  the  total  submission of one’s will  to God  represents  the  essence of worship,  the  basic<br />
message  of  God’s  divine  religion,  Islam,  is  the  worship  of  God  alone.  It  also  requires  the<br />
avoidance of worship directed to any person, place or thing other  than God. Since everything<br />
other  than God,  the creator of all  the  things,  is God’s creation,  it may be said  that  Islam,  in<br />
essence, calls man away from worship of creation and invites him to worship only his Creator.<br />
He is the only one deserving of man’s worship, because it is only by His will that prayers are<br />
answered.<br />
Page 3 of 7<br />
Accordingly,  if a man prays  to a  tree and his prayers are answered,  it  is not  the  tree which<br />
answers  his  prayers  but God,  who  allows  the  circumstances  prayed  for  to  take  place.  One<br />
might  say,  “That  is  obvious”.  However,  to  tree-worshippers,  it  might  not  be  so.  Similarly,<br />
prayers  to  Jesus,  Buddha,  or  Krishna  or  Saint  Christopher,  or  Saint  Jude  or  even  to<br />
Muhammad,  are  not  answered  by  them,  but  are  answered  by  God.  Jesus  did  not  tell  his<br />
followers to worship him but to worship God, as the Quran states:<br />
“And  behold!  Allah  will  say:  ‘O  Jesus,  the  son  of<br />
Mary!  Did  you  say  to  men,  worship  me  and  my<br />
mother as gods besides Allah?, He will say: “Glory to<br />
you, I could never say what I had no right  (to say).”<br />
[Qur’an 5:118]<br />
Nor did Jesus worship himself when he worshipped, but rather he worshipped God. And Jesus<br />
was reported in the Gospels to have said,<br />
“It is written: &#8216;Worship the Lord your God and serve Him<br />
only.’” [Luke 4:8]<br />
This basic principle  is  contained  in  the opening  chapter of  the Qur’an, known as Soorah al-<br />
Faatihah, verse 4:<br />
“you alone do we worship and from you alone do we<br />
seek help.”<br />
Elsewhere, in the final book of revelation, the Quran, God also said:<br />
“And  you  Lord  says:  ‘Call  on Me  and  I  will  answer<br />
your (prayer).’” [Qur’an 40:60]<br />
It is worth emphasizing that the basic message of Islam (namely, the worship of God alone) also<br />
proclaims that God and His creation are distinctly different entities. God is neither equal to His<br />
creation nor a part of it, nor is His creation equal to Him or a part of Him.<br />
This might seem obvious, but man’s worship of  creation,  instead of  the Creator  is  to a  large<br />
degree based on ignorance, or neglect, of this concept. It is the belief that the essence of God is<br />
everywhere  in His  creation  or  that His  divine  being  is  or was  present  in  some  parts  of His<br />
creation, which has provided justification for the worship of God’s creation and naming it the<br />
worship  of  God.  However,  the message  of  Islam,  as  brought  by  the  prophets  of  God,  is  to<br />
worship only God and to avoid the worship of His creation either directly or indirectly.<br />
In the Qur’an God clearly states:<br />
“For  we  assuredly  sent  amongst  every  people  a<br />
prophet,  with  the  command Worship Me  and  avoid<br />
false Gods.” [Qur’an 16:36]<br />
When idol worshippers are questioned as to why they bow down to idols created by men, the<br />
invariable  reply  is  that  they  are  not  actually worshipping  the  stone  image,  but God  who  is<br />
present within it. They claim that the stone idol is only a focal point for God’s essence and is<br />
not in itself God! One who has accepted the concept of God being present in any way within His<br />
creation will be obliged to accept this argument for idolatry. Whereas, one who understands the<br />
basic message of Islam and its implications would never agree to idolatry no matter how it  is<br />
rationalized.<br />
Those who have claimed divinity for themselves down through the ages have often based their<br />
claims on the mistaken belief that God is present in man. Taking one step further, they claim<br />
that  God  is more  present  in  them  than  in  the  rest  of  us,  and  that  other  humans  should<br />
Page 4 of 7<br />
therefore submit to them and worship them as God in person or as God concentrated within<br />
their persons. Similarly, those who have asserted the godhood of others after their deaths have<br />
found fertile ground among those who accept the false belief of God’s presence in man.<br />
It should be abundantly clear by now that one who has grasped the basic message of Islam and<br />
its  implications could never agree to worship another human being under any circumstance.<br />
God’s  religion,  in  essence,  is  a  clear  call  to  the worship  of  the Creator  and  the  rejection  of<br />
creation-worship in any form. This is the meaning of the motto of Islam:<br />
“Laa Ilaaha Ill Allah” (there is no God but Allah)<br />
The sincere declaration of this phrase and the acceptance of prophethood automatically bring<br />
one within the  fold of  Islam, and sincere belief  in  it guarantees one Paradise. Thus,  the  final<br />
Prophet of Islam (p.b.u.h) is reported to have said, “Any one who says: There is no God but<br />
Allah, and dies holding that (belief) will enter paradise.”<br />
Belief in this declaration of faith requires that one submit his/her will to God in the way taught<br />
by the prophets of God. It also requires the believer to give up the worship of false gods.<br />
The Message Of False Religions<br />
There  are  so many  sects,  cults,  religions,  philosophies,  and movements  in  the  world,  all  of<br />
which claim to be the right way or the only true path of God How can one determine which one<br />
is correct or whether, in fact, all are correct? One method by which the answer can be found is<br />
to  clear  away  the  superficial  differences  in  the  teachings  of  the  various  claimants  to  the<br />
ultimate  truth, and  identifies  the  central object  of worship upon which  they  call,  directly or<br />
indirectly. False religions all have in common one basic concept with regard to God they either<br />
claim that all men are gods, or that specific men were God, or that nature is God, or that God<br />
is a figment of man’s imagination.<br />
Thus, it may be stated that the basic message of false religion is that God may be worshipped<br />
in the form of His creation. False religions invite man to the worship of creation by calling the<br />
creation or some aspect of it God. For example, prophet Jesus invited his followers to worship<br />
God, but those who claim to be Jesus’  followers  today call people to worship Jesus, claiming<br />
that he was God.<br />
Buddha was a reformer who  introduced a number of humanistic principles  in  the  religion of<br />
India. He did not claim to be God, nor did he suggest to his followers that he be an object of<br />
worship. Yet today most Buddhists who are to be found outside of India have taken him to be<br />
God and they prostrate themselves to idols made in their perception of his likeness.<br />
By using the principle of identifying the object of worship, we can easily detect false religions<br />
and the contrived nature of their origin. As God said in the Qur’an:<br />
“That which you worship besides Him are only names<br />
and  you  and  your  forefathers  have  invented  for<br />
which  Allah  has  sent  down  no  authority:  the<br />
command  belongs  only  to  Allah  He  has  command<br />
that you worship Him; that is the right religion, but<br />
most men do not understand.” [Qur’an 12:40]<br />
It may be argued  that all religions  teach good  things, so why should  it matter which one we<br />
follow?  The  reply  is  that  all  false  religions  teach  the  greatest  evil  the  worship  of  creation.<br />
Creation-worship  is  the  greatest  sin  that man  can  commit  because  it  contradicts  the  very<br />
purpose of his creation. Man was created to worship God alone as Allah has explicitly stated in<br />
the Qur’an:<br />
“I have  only  created  jinns  and men,  that  they may<br />
worship Me” [Qur’an 51:56]<br />
Page 5 of 7<br />
Consequently , the worship of creation, which is the essence of idolatry is the only unforgivable<br />
sin. One who dies in this state of  idolatry, has sealed his  fate  in  the next life. This  is not an<br />
opinion, but a revealed fact stated by God in his final revelation to man:<br />
“Verily Allah will not  forgive  the  joining of partners<br />
with Him, but He may forgive (sins) less than that for<br />
whomsoever He wishes.” [Qur’an 4:48 and 116]<br />
Universality Of God’s Religion<br />
Since the consequences of following a false religion are so grave, the true religion of God must<br />
have  been  universally  understandable  and  universally  attainable  in  the  past  and  it  must<br />
continue eternally to be understandable and attainable  throughout  the entire world.  In other<br />
words, the true religion of God cannot be confined to any one people, place, or period of time.<br />
Nor is it logical that such a religion should impose conditions that have nothing to do with the<br />
relationship  of  man  with  God,  such  as  baptism,  or  belief  in  man  as  a  savior,  or  an<br />
intermediary. Within the central principle of Islam and its definition (the surrender of one’s will<br />
to God) lie the roots of Islam’s universality. Whenever man comes to the realization that God is<br />
one and distinct from His creation, and submits himself to God, he becomes a Muslim in body<br />
and spirit and is eligible for paradise.<br />
Consequently, anyone at any time in the most remote regions of the world can become Muslim,<br />
a follower of God’s religion, Islam, by merely rejecting  the worship of creation and  turning  to<br />
God alone. It should be noted, however, that in order to actually submit to God’s will, one must<br />
continually choose between right and wrong. Indeed, man is endowed by God with  the power<br />
not only  to distinguish  right  from wrong but also  to  choose  between  them.  These God-given<br />
powers carry with them an important responsibility, namely, that man is answerable to God for<br />
the choices he makes. It follows,  then,  that man should  try his utmost  to do good and avoid<br />
evil. These concepts are expressed in the final revelation as follows:<br />
“Verily, those who believe (in the Qur’an), and those<br />
who follow the Jewish faith, and the Christians, and<br />
the  Sabians  (angel-and-star-worshippers)  &#8211;  any  of<br />
these who believe in Allah and the Last Day and work<br />
righteousness  shall  have  their  reward  with  their<br />
Lord.  They  will  not  be  overcome  by  fear  or  grief.”<br />
[Qur’an 2:62]<br />
If, for whatever reason, they fail to accept the final message after it has been clearly explained<br />
to them, they will be in grave danger. The last Prophet said:<br />
“Whoever among the Christians and Jews hears of me but<br />
does not  affirm  his  belief  in what  I  brought  and  dies  in<br />
this  state  will  be  among  the  inhabitants  of  hell.”  (Sahih<br />
Muslim [English Translation], Vol.1 P.91 No, 284)<br />
Recognition Of God<br />
The question which arises here is : How can all people be expected to believe in  the one true<br />
God, given their varying backgrounds, societies and cultures? For people to be held responsible<br />
for worshipping the one true God, they all need to have access to knowledge of Him. The final<br />
revelation teaches that all humans being have the recognition of the one true God imprinted on<br />
their souls as a part of their very nature with which they are created.<br />
In the seventh chapter of the Qur’an (Al-A’raaf, verses 172-173), God explained that when He<br />
created  Adam  He  caused  all  of  Adam’s  descendants  to  come  into  existence  and  He  took  a<br />
pledge from them saying:<br />
Page 6 of 7<br />
“‘Am  I  not  your  Lord?’  To  which  they  all  replied,<br />
‘Yes, we testify to it’”<br />
Allah then explained why He had all of mankind bear witness that He is their creator and the<br />
only true God worthy of worship. He said:<br />
“That was  in case  you  (mankind)  should  say  on  the<br />
day  of Resurrection,  ‘Verily we were  unaware  of  all<br />
this’” [Qur’an 7:172]<br />
That is to say, we cannot claim on that day that we had no idea that Allah, was our God and<br />
that no one told us that we were only supposed to worship Allah alone. Allah went on to further<br />
explain that:<br />
“It was also in case you should say, ‘Certainly it was<br />
our ancestors who made partners (with Allah) and we<br />
are only their descendants; will you then destroy us<br />
for what those liars did?’” [Qur’an 7:173]<br />
Thus, every child  is born with a natural belief  in God and an  in-born  inclination  to worship<br />
Him alone. This in-born belief and inclination is called in Arabic the “Fitrah“.<br />
The  Prophet  Muhammad  reported  that  Allah  said,  “I  created  my  servants  in  the  right<br />
religion, but devils made them go astray.” The Prophet also said, “Each child is born in a<br />
state of Fitrah. Then his parents make him a Jew, Christian or a Zoroastrian.” If the child<br />
were  left  alone, he would worship God  in his  own way,  but  all  children  are  affected  by  the<br />
environment. So, just as the child submits to the physical laws, which Allah has  imposed on<br />
nature, in the same way his soul also submits naturally to the fact that Allah is his Lord and<br />
Creator. But,  if his  parents  try  to make him  follow  a  different  path,  the  child  is not  strong<br />
enough in the early stages of his life to resist or oppose the will of his parents. In such cases,<br />
the religion, which the child follows, is one of custom and upbringing, and God does not hold<br />
him to account or punish him for his religion up to a certain stage of his life.<br />
The Signs Of God<br />
Throughout people’s  lives,  from  childhood until  the  time  they die,  signs of  the one  and  only<br />
true God are shown to them in all regions of the earth and in their own souls, until it becomes<br />
clear that there is only one true God (Allah). God says in the Qur’an:<br />
“We will show them our signs In the furthest regions<br />
(of  the  earth)  and  in  their  souls,  until  it  becomes<br />
clear to them that this is the truth.” [Qur’an 41:53]<br />
The following is an example of God revealing by a sign to one man the error of his idol-worship.<br />
In  the  south-eastern  region of  the Amazon  jungle  in Brazil, South America, a primitive  tribe<br />
erected  a  new  hut  to  house  their man-idol  Skwatch,  representing  the  supreme  God  of  all<br />
creation. The following day a young man entered the hut to pay homage to the God, and while<br />
he was in prostration to what he had been taught was his Creator and Sustainer, a mangy old<br />
flea-ridden dog slunk into the hut. The young man looked up in time to see the dog lift his hind<br />
leg and pass urine on the idol.<br />
Outraged, the youth chased the dog out of the temple; but when his rage died down he realized<br />
that the idol could not be the Lord of the Universe. God must be elsewhere, he concluded. As<br />
strange as it may seem, the dog urinated on the idol was a sign from God for that young man.<br />
This sign contained  the divine message  that what he was worshipping was  false.  It  liberated<br />
from slavishly following his traditionally learned worship of a false god. As a result,  this man<br />
was given a choice: either to seek the true god or to continue in the error of his ways.<br />
Allah mentions Prophet Abraham’s quest for God as an example of how  those who  follow His<br />
signs will be rightly guided:<br />
Page 7 of 7<br />
“So  also  did  we  show  Abraham  the  power  and  the<br />
Laws  of  the  heavens  and  the  earth  that  he  might<br />
(with understanding) have certitude.  When the night<br />
covered him over, he saw a star. He said: ‘This is my<br />
Lord.’ But when it set, he said: ‘I love not those that<br />
set’   When  he  saw  the moon  rising  in  splendor,  he<br />
said:  ‘This  is my  Lord.’ But when  the moon  set, he<br />
said:  ‘Unless  my  Lord  guide  me,  I  shall  surely  be<br />
among those who go astray.’  When he saw the rising<br />
sun in splendor, he said: ‘This is my Lord this is the<br />
greatest  (of  all).’  But when  the  sun  set,  he  said;  ‘O<br />
my people I am indeed free from your (guilt) of giving<br />
partners to Allah.  For me, I have set my face, firmly<br />
and truly, towards Him who created the heavens and<br />
the  earth,  and  never  shall  I  give  partners  to  Allah”<br />
[Qur’an 6:75-79]<br />
As was mentioned earlier, prophets have been sent to every nation and tribe to support man’s<br />
natural belief in God and man’s in-born inclination to worship Him, as well as to reinforce the<br />
divine  truth  in  the daily  signs  revealed by God. Although much of  these prophets’  teachings<br />
became distorted, portions revealing their God-inspired messages have remained untainted and<br />
have served  to guide mankind in  the choice between  right and wrong. The  influence of Godinspired<br />
messages  down  through  the  ages  can  be  seen  in  the  “Ten  Commandments”  of<br />
Judaism’s  Torah  which  were  later  adopted  into  Christianity’s  teachings,  as  well  as  in  the<br />
existence  of  laws  against  murder,  stealing  and  adultery  in  most  societies  throughout  the<br />
ancient and modern world.<br />
As a result of God’s signs to mankind through the ages combined with His revelation through<br />
His prophets, all mankind has been given a chance to recognize the one only true God.<br />
Consequently, every soul will be held accountable for its belief in God and its acceptance of the<br />
true religion of God, namely Islam, which means total submission to the will of Allah.<br />
Conclusion<br />
The preceding presentation has demonstrated that the name of the religion of Islam expresses<br />
Islam’s most central principle, submission to God, and that the name “Islam” was chosen not<br />
by man, but by God, according  to  the holy  scriptures of  Islam.  It has also been  shown  that<br />
Islam alone teaches the uniqueness of God and His attributes and enjoins the worship of God<br />
alone without intermediaries. Finally, due to the divinely instilled inclination of man to worship<br />
God  and  the  signs  revealed  by  God  throughout  the  ages  to  each  individual,  Islam may  be<br />
achieved by all men at all times.<br />
In  short,  the  significance  of  the  name  Islam  (submission  to  God),  Islam’s  fundamental<br />
acknowledgment of the uniqueness of God and Islam’s accessibility to all mankind at all times<br />
convincingly support Islam’s claim that from the beginning of time in whatever language it was<br />
expressed, Islam alone has been, and will be the true religion of God.<br />
In conclusion we ask Allah, the exalted, to keep us on the right path to which He has guided<br />
us, and to bestow on us His blessings and mercy, for He is indeed the Most Merciful. Praise be<br />
to Allah, the Lord of the worlds, and peace and blessings be on prophet Muhammad and on all<br />
the prophets of God and their righteous followers.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/avaricesoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/avaricesoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/avaricesoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/avaricesoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/avaricesoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/avaricesoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/avaricesoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/avaricesoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/avaricesoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/avaricesoft.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=79&subd=avaricesoft&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://avaricesoft.wordpress.com/2009/06/08/the-true-religion-of-god/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c3874b6d0bf0758cd208f063b2e86f06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">avaricesoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Qura’anic Principles and the role of new Generation</title>
		<link>http://avaricesoft.wordpress.com/2009/06/08/qura%e2%80%99anic-principles-and-the-role-of-new-generation-2/</link>
		<comments>http://avaricesoft.wordpress.com/2009/06/08/qura%e2%80%99anic-principles-and-the-role-of-new-generation-2/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 19:38:17 +0000</pubDate>
		<dc:creator>avaricesoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://avaricesoft.wordpress.com/?p=76</guid>
		<description><![CDATA[


Qura’anic Principles and the role of new   Generation
Course   :Islamic Thoughts
Submitted To
Syed   Muhammad Usman


Shahzaib   Shamim [ 2958 ]
Paf Kiet KARACHI

 










 


Table Of Content

The Meaning of Islam:                                                                                                3
Articles of Faith:                                                                                                         4


Allah, the One and Only God
Messengers and Prophets of God


Revelations and the Quran:                                                                                        5-11

The Angels of Allah
The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=avaricesoft.wordpress.com&blog=3667311&post=76&subd=avaricesoft&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><table border="0" cellspacing="0" cellpadding="0" width="100%" align="left">
<tbody>
<tr>
<td width="235">Qura’anic Principles and the role of new   Generation</td>
<td colspan="2" width="418">Course   :Islamic Thoughts</p>
<p>Submitted To</p>
<p>Syed   Muhammad Usman</td>
</tr>
<tr>
<td colspan="2" width="470"><strong>Shahzaib   Shamim [ 2958 ]</strong></p>
<p><strong>Paf Kiet KARACHI<br />
</strong></td>
<td width="183"><strong> </strong></td>
</tr>
<tr>
<td width="283"></td>
<td width="262"></td>
<td width="203"></td>
</tr>
</tbody>
</table>
<p><span style="text-decoration:underline;"><br />
</span></p>
<p><span style="text-decoration:underline;"> </span></p>
<p align="center">
<p align="center">
<p align="center"><span style="text-decoration:underline;">Table Of Content</span></p>
<ol>
<li>The Meaning of Islam:                                                                                                3</li>
<li>Articles of Faith:                                                                                                         4</li>
</ol>
<ol>
<li>Allah, the One and Only God</li>
<li>Messengers and Prophets of God</li>
</ol>
<ol>
<li>Revelations and the Quran:                                                                                        5-11
<ol>
<li>The Angels of Allah</li>
<li>The Day of Judgement</li>
<li>Qadaa and Qadar</li>
<li>The Purpose of Life</li>
<li>Status of Human Being</li>
<li>Salvation</li>
<li>Acceptance of Faith</li>
<li>Application of Faith</li>
<li>Prayer (Salah)</li>
<li>Fasting</li>
<li>Charity Giving (Zakah)</li>
<li>The Pilgrimmage (Hajj)</li>
<li>Islam is a Code of Life</li>
</ol>
</li>
</ol>
<ol>
<li>ReveLation of  Quran:                                                                                                12-16</li>
<li>The Preaching of Islam                                                                                               17-23</li>
<li>Role of Young Generation in Islam                                                                            24-26</li>
</ol>
<ol>
<li> i.      Living for Islam</li>
<li> ii.      Essential Knowledge</li>
<li> iii.      The Characteristics of People who live for Islam</li>
<li> iv.      The Compulsory Nature of Islamic Activism</li>
</ol>
<ol>
<li>The Requirements of Bai‘ah and      Brotherhood                                                           27</li>
</ol>
<ol>
<li>The Responsibilities of Brotherhood</li>
</ol>
<p><span style="text-decoration:underline;"><br />
The Meaning of Islam:</span></p>
<p>ISLAM is derived from the Arabic root &#8220;SALEMA&#8221;: peace, purity, submission and obedience. In the religious sense, Islam means submission to the will of God and obedience to His law.</p>
<p>Everything and every phenomenon in the world, other than man is administered TOTALLY by God-made laws i.e. they are obedient to God and submissive to His laws i.e. they are in the STATE OF ISLAM. Man possesses the quality of intelligence and choice, thus he is invited to submit to the good will of God and obey His law ie. become a Muslim. Submission to the good will of God, together with obedience to His beneficial law, i.e. becoming a Muslim is the best safeguard for man&#8217;s peace and harmony.</p>
<p>Islam dates back to the edge of Adam and its message has been conveyed to man by God&#8217;s Prophets and Messengers including Abrahim, Moses, Jesus and Muhammad. Islam&#8217;s message has been restored and enforced in the last stage of the religious evolution by God&#8217;s last Prophet and Messenger Muhammad.</p>
<p>The word Allah in the Arabic language means God, or more accurately The One and Only Eternal God, Creator of theUniverse, Lord of all lords, King of all kings, MostCompassionate, Most Merciful. The word Allah to mean God is also used by Arabic speaking Jews and Christians.</p>
<p><span style="text-decoration:underline;">Articles of Faith:</span></p>
<p>Allah, the One and Only God</p>
<p>A muslim believes in ONE GOD, Supreme and Eternal, Infinite and Mighty, Merciful and Compassionate, Creator and Provider. God has no father nor mother, no sons nor was He fathered. None equal to Him. He is God of all mankind, not of a special tribe or race.</p>
<p>God is High and Supreme but He is very near to the pious thoughtful believers; He answers their prayers and help them. He loves the people who love Him and forgives their sins. He gives them peace, happiness, knowledge and success. God is the Loving and the Provider, the Generous, and the Benevolent, the Rich and the Independent the Forgiving and the Clement, the Patient and the Appreciative, the Unique and the Protector, the Judge and the Peace. God&#8217;s attributes are mentioned in the Quran.</p>
<p>God creates in man the mind to understand, the soul and conscience to be good and righteous, the feelings and sentiments to be kind and humane. If we try to count His favours upon us, we cannot, because they are countless. In return for all the great favours and mercy, God does not need anything from us, because He is Needless and Independent. God asks us to know Him, to love Him and to enforce His law for our benefit and our own benefit and our own good.</p>
<p>Messengers and Prophets of God</p>
<p>A Muslim believes in all the Messengers and Prophets of God without any discrimination. All messengers were mortals, human beings, endowed with Divine revelations and appointed by God to teach mankind. The Holy Quran mentions the names of 25 messengers and prophets and states that there are others. These include Noah, Abrahim, Ishmael, Isaac, Moses, Jesus and Muhammad. Their message is the same and it is Islam and it came from One and the Same Source; God, and it is to submit to His will and to obey His law; i.e., to become a Muslim.</p>
<p><span style="text-decoration:underline;">Revelations and the Quran:</span></p>
<p>A Muslim believes in all scriptures and revelations of God, as they were complete and in their original versions. Allah, the Creator, has not left man without guidance for the conduct of his life. Revelations were given to guide the people to the right path of Allah and sent down to selected people, the prophet and messengers, to convey it to their fellow men.</p>
<p>The message of all the prophet and messengers is the same. They all asked the people of their time to obey and worship Allah and none other. Abrahim, Moses, David, Jesus and Muhammad who were revealed their own book of Allah, were sent at different times to bring back straying human being from deviation to Right Course.</p>
<p>The Quran is the sacred book of the Muslims. It is the last book of guidance from Allah, sent down to Muhammad, peace be upon him, through the angel Jibraeel (Gabriel). Every word of it is the word of Allah. It was revealed over a period of 23 years in the Arabic language. It contains 114 Surahs (chapters) and over 6000 verses.</p>
<p>The Quran deals with man and his ultimate goal in life. Its teachings cover all areas of this life and the life after death. It contains principles, doctrines and directions for every sphere of human life. The theme of the Quran broadly consists of three fundamental ideas: Oneness of Allah, Prophethood and life after death. The success of human beings on this earth and in the life hereafter depends on obedience to the Quranic teaching.</p>
<p>The Quran is unrivalled in its recording and prservation. The astonishing fact about this book of Allah is that it has remained unchanged even to a dot over the past fourteen hundred years. No scholar has questioned the fact that the Quran today is the same as it was revealed. Muslims till today memorize the Quran word by word as a whole or in part. Today, the Quran is the only authentic and complete book of Allah. Allah is protecting it from being lost, corrupted or concealed.</p>
<p>The Angels of Allah</p>
<p>There are purely spiritual and splendid beings created by Allah. They require no food or drink or sleep. They have no physical desires nor material needs. Angels spend their time in the service of Allah. Each charged with a certain duty. Angels cannot be seen by the naked eyes. Knowledge and the truth are not entirely confined to sensory knowledge or sensory perception alone.</p>
<p>The Day of Judgement</p>
<p>A Muslim believes in the Day of the Judgement. This world as we know it will come to an end and the dead will rise to stand for their final and fair trial. On that day, all men and women from Adam to the last person will be resurrected from the state of death for judgement. Everything we do, say, make, intend and think are accounted for and kept in accurate records. They are brought up on the Day of Judgement. One who believe in life after death is not expected to behave against the Will of Allah. He will always bear in mind that Allah is watching all his actions and the angels are recording them.</p>
<p>People with good records will be generously rewarded and warmly welcomed to Allah&#8217;s Heaven. People with bad records will be fairly punished and cast into Hell. The real nature of Heaven and Hell are known to Allah only, but they are described by Allah in man&#8217;s familiar terms in the Quran.</p>
<p>If some good deeds are seen not to get full appreciation and credit in this life, they will receive full compensation and be widely acknowledged on the Day of Judgement. If some people who commit sins, neglect Allah and indulge in immoral activities, seem SUPERFICIALLY successful and prosperous in this life, absolute justice will be done to them on the Day of Judgement. The time of the Day of Judgement is only known to Allah and Allah alone.</p>
<p>Qadaa and Qadar</p>
<p>A Muslim believes in Qadaa and Qadar which related to the ultimate power of Allah. Qadaa and Qadar means the Timeless Knowledge of Allah and His power to plan and execute His plans. Allah is not indifferent to this world nor is He neutral to it. It implies that everything on this earth originates from the one and only creator who is also the Sustainer and the sole source of guidance.</p>
<p>Allah is Wise, Just and Loving and whatever He does must have a good motive, although we may fail sometimes to understand it fully. We should have strong faith in Allah and accept whatever He does because our knowledge is limited and our thinking is based on individual consideration, whereas His knowledge is limitless and He plans on a universal basis. Man should think, plan and make sound choice, but if things do not happen the way he wants, he should not lose faith and surrender himself to mental strains or shattering worries.</p>
<p>The Purpose of Life</p>
<p>A Muslim believe that the purpose of life is to worship Allah. Worshipping Allah does not mean we spend our entire lives in constant seclusion and absolute meditation. To worship Allah is to live life according to His commands, not to run away from it. To worship Allah is to know Him, to love Him, to obey His commands, to enforce His laws in every aspect of life, to serve His cause by doing right and shunning evil and to be just to Him, to ourselves and to our fellow human beings.</p>
<p>Status of Human Being</p>
<p>A Muslim believes that human being enjoys an especially high ranking status in the hierarchy of all known creatures. Man occupies this distinguished position because he alone is gifted with rational faculties and spiritual aspirations as well as powers of action. Man is not a condemned race from birth to death, but a dignified being potentially capable of good and noble achievements. A Muslim also believes that every person is born muslim. Every person is endowed by Allah with spiritual potential and intellectual inclination that can make him a good Muslim. Every person&#8217;s birth takes place according to the will of Allah in realization of His plans and in submission to His commands. Every person is born FREE FROM SIN. When the person reaches the age of maturity and if he is sane, he become accountable for all his deeds and intentions. Man is free from sin until he commits sin. There is no inherited sin, no original sin. Adam committed the first sin, he prayed to Allah for pardon and Allah granted Adam pardon.</p>
<p>Salvation</p>
<p>A Muslim believes that man must work out his salvation through the guidance of Allah. No one can act on behalf of another or intercede between him and Allah. In order to obtain salvation, a person must combine faith and action, belief and practice. Faith without doing good deeds is as insufficient as doing good deeds without faith. Also, a Muslim believes that Allah does not hold any person responsible until he has shown him the Right Way. If people do not know and have no way of knowing about Islam, they will not be responsible for failing to be Muslim. Every Muslim must preach Islam in words and action.</p>
<p>Acceptance of Faith</p>
<p>A Muslim believes that faith is not complete when it is followed blindly or accepted unquestioningly. Man must build his faith on well-grounded convictions beyond any reasonable doubt and above uncertainty. Islam insures freedom to believe and forbids compulsion in religion (one of the oldest synagogues and one of the oldest churches in the worlds is in Muslim countries).</p>
<p>A Muslim believes that the Quran is the word of Allah revealed to prophet Muhammad through the Angel Gabriel. The Quran was revealed from revealed from</p>
<p>Allah on various occasions to answer questions, solve problems, settle dbe man&#8217;s best guide to the truth. The Quran was revealed in Arabic and it is still in its original and complete Arabic version until today. It is memorized by millions. A Muslim also believes in a clear distinction between the Quran and the Traditions (called Hadits) of the Prophet Muhammad. Whereas, the Quran is the word of Allah, the Traditions of Prophet Muhammad (hadits i.e.: his teachings, sayings, and actions) are the practical interpretations of the Quran. Both the Quran and the Hadits of Prophet Muhammad are the primary sources of knowledge in Islam.</p>
<p>Application of Faith</p>
<p>God has laid down for a Muslim four major exercises of faith, some are daily, some weekly, some monthly, some annually and some are required as a minimum of once in a lifetime. These exercises of faith are to serve man&#8217;s spiritual purposes, satisfy his human needs and to mark his whole life with a Divine touch. These major exercises of faith are:</p>
<p>Prayer (Salah)</p>
<p>Praying, to the Creator on a daily basis, is the best way to cultivate in a man a sound personality and to actualize his aspiration. Allah does not need man&#8217;s prayer because He is free of all needs. Salah is for our benefit which are immeasurable and the blessings are beyond imagination.</p>
<p>In salah, every muscle of the body joins the soul and the mind in the worship and glory of Allah. Salah is an act of worship. It is a matchless and unprecedented formula of intellectual meditation and spiritual devotion, of moral elevation and physical exercise, all combined.</p>
<p>Offering of salah is obligatory upon every Muslim male and female who is sane, mature and in case of women free from menstruation and confinement due to child birth. Requirements of salah: performing of ablution (Wudu), purity of the whole body, clothes and ground used for prayer, dressing properly and having (or declaring) the intention and facing the Qiblah; the direction of the Ka&#8217;bah at Mecca.</p>
<p>Obligatory Salah: Five daily salahs, the Friday&#8217;s noon congregation salah and the funeral salah.</p>
<p>Highly recommended salah: Those accompanying the obligatory salah and the two great festival salahs.</p>
<p>Optional salah: Voluntary salah during the day and night.</p>
<p>Times of Obligatory Salah:</p>
<p>1. Early Morning &#8211; after dawn and before sunrise.</p>
<p>2. Noon &#8211; after the sun begins to decline from its zenith until it is about midway on its course to set.</p>
<p>3. Mid-afternoon &#8211; after the expiration of the noon salah time until sunset.</p>
<p>4. Sunset &#8211; immediately after sunset until the red glow in the western horizon disappears.</p>
<p>5. Evening &#8211; after the expiration of the sunset salah until dawn. Salah should be offered in its due time, unless there is a reasonable excuse. Delayed obligatory salah must be made up. In addition to the prescribed salah, a Muslim expressed gratitude to God and appreciation of His favours and asks for His mercy all the time. Especially at times of, for example: childbirth, marriage, going to or rising from bed, leaving and returning to his home, starting a journey or entering a city, riding or driving, before or after eating or drinking, harvesting, visiting graveyards and at time of distress and sickness.</p>
<p>Fasting</p>
<p>Fasting is abstaining completely from eating, drinking, intimate sexual contacts and smoking from the break of dawn till sunset. It is a matchless Islamic institution which teaches man the principle of sincere love to God. Fasting teaches man a creative sense of hope, devotion, patience, unselfishness, moderation, willpower, wise saving, sound budgeting, mature adaptability, healthy survival, discipline, spirit of social belonging, unity and brotherhood. Obligatory fasting is done once a year for the period of the month of Ramadan; the ninth month of the Islamic year. Recommended fasting every Monday and Thursday of every week, three days in the middle of each Islamic month, six days after Ramadan following the Feast Day and a few days of the two months before Ramadan. Fasting of Ramadan is a worship act which is obligatory on every adult Muslim, male or female if he/she mentally and physically fit and not on a journey. Exception: women during their period of menstruation and while nursing their child and also in case of travel and sickness.</p>
<p>Charity Giving (Zakah)</p>
<p>Charity giving is an act of worship and spiritual investment. The lateral meaning of Zakah is purity and it refers to the annual amount in kind or coin which a Muslim with means must distribute among the rightful beneficiaries. Zakah does not only purifies the property of the contributor but also purifies his heart from selfishness and greed. It also purifies the heart of the recipient from envy and jealousy, from hatred and uneasiness and it fosters instead good-will and warm wishes for the contributors.</p>
<p>Zakah has a deep humanitarian and social-political value; for example, it frees society from class welfare, from ill feelings and distrust and from corruption. Although Islam does not hinder private enterprise or condemn private possession, it does not tolerate selfish and greedy capitalism. Islam adopts a moderate but positive and effective course between individual and society, between the citizen and the state, between capitalism and socialism, between materialism and spiritualism. Zakah is paid on the net balance after paying personal expenses, family expenses, due credits, taxes, etc. Every Muslim, male or female who at the end of the year is in possession of the equivalent of 85 g of gold (approx. $1400 in 1990) or more in cash or articles of trade, must give Zakah at minimum rate of 2.5%. Taxes paid to government do not substitute for this religious duty. Contributor should not seek pride or fame but if disclosing his name and his contribution is likely to encourage others, it is acceptable to do so. The recipient of Zakah are: the poor, the needy, the new Muslim converts, the Muslim prisoners of war (to liberate them), Muslim in debt. Also employees appointed to collect Zakah, Muslim in service of research or study or propagation of Islam, wayfarers who are foreigners in need of help.</p>
<p>The Pilgrimmage (Hajj)</p>
<p>It is a pilgrimage to Mecca, at least once in a lifetime and it is obligatory upon every Muslim male and female who is mentally, physically and financially fit. It is the largest annual convention of faith on earth (in 1989: 2.5 million). Peace is the dominant theme. Peace with Allah, with one&#8217;s soul, with one another, with all living creatures. To disturb the peace of anyone or any creature in any shape or form is strictly prohibited.</p>
<p>Muslim from all walks of life, from every corner of the globe assemble in Mecca in response to the call of Allah. There is no royalty but loyalty of all to Allah, the Creator. It is to commemorate the Divine rituals observed by the Prophet Abrahim and his son Ishmael, who are the first pilgrim to the house of Allah on earth; the Ka&#8217;bah. It is also to remember the grad assembly of the Day of Judgement when people will stand equal before Allah.</p>
<p>Muslims go to Mecca in glory of Allah, not to worship a man. The visit to the tomb of Prophet Muhammad at Madena is highly recommended but not essential in making the Hajj valid and complete.</p>
<p>Islam is a Code of Life</p>
<p>It is a Muslim belief that Muhammad&#8217;s mission was for the whole world and for all the time; because:</p>
<p>Its universality has been clearly confirmed by the Quran (Surah 7: verse 158, 6:19, 34:28, 81:27).</p>
<p>It is a logical consequences of the finality of his prophethood. He had to be the guide and the leader for all men and for all ages.</p>
<p>Allah has provided, through him, a complete code which is to be followed, and this in itself supports the concept of finality, because without completeness, the need for other prophets would remain.</p>
<p>It is a fact that during the last 1400 years no man has arisen whose life and works bear even the slightest resemblance to that of a prophet. Nor has anyone presented a book which could be remotely considered a divine communication. Still less has there been a man to claim legitimate authority as a law-giver fro mankind. The mission of Muhammad, as well as of other prophets who brought the universal message of Islam, does not end with the announcement of the message. He has to guide the people by explaining to them the implications of the Islamic creed, the morale code, the divine injunctions and commandment, and the form of worship that sustains the whole system. He has to exemplify the faith so others can pattern their participation in the evolution of Islamic culture and civilization. The believers must grow under his guidance into an organized community so that Allah&#8217;s word will prevail over all other words.</p>
<p>1. Spiritual Life: prayer (salah), fasting, charity giving (zakah), pilgrimage (hajj), love for Allah and His Messenger, love for truth and humanity for the sake of Allah, hope and trust in Allah at all times and doing good for the sake of Allah.</p>
<p>2. Intellectual Life: True knowledge based on clear proof and indisputable evidence acquired by experience or experiment or by both. The Quran points to the rich sources of knowledge in the whole universe. Islam demands faith in Allah on the basis of knowledge and research and leaves wide open all field of thought before the intellect to penetrate as far it can reach.</p>
<p>3. Personal Life: purity and cleanliness, a healthy diet, proper clothing, proper behaviour, and good healthy sexual relations within marriage.</p>
<p>4. Family Life: A family is a human social group whose members are bound together by the bond of blood ties and/or marital relationship and nothing else (adoption, mutual alliance, common law, trial marriage&#8230;etc.). Marriage is a religious duty on all who are capable of meeting its responsibilities. Each member of the family has rights and obligations.</p>
<p>5. Social Life: Man is ordained by Allah to extend his utmost help and kindness to other family members, relations, servants and neighbours. No superiority on account of class, colour, origin or wealth. Humanity represents one family springing from the one and the same father and mother. The unity of the humanity is not only in its origin but also in its ultimate aims.</p>
<p>6. Economical Life: Earning one&#8217;s living through decent labour is not only a duty but a great virtue as well. Earning is man&#8217;s private possession. The individual is responsible for the prosperity of the state and the state is responsible for the security of the individual. The Islamic economic system is not based on arithmetical calculations alne but also on moral and principles. Man comes to this world empty-handed and departs empty-handed. The real owner of things is Allah alone. Man is simply a trustee.</p>
<p>7. Political Life: The sovereignty in the Islamic State belongs to Allah; the people exercise it by trust from Him to enforce His laws. The ruler is only an acting executive chosen by the people to serve them according to Allah&#8217;s law. The State is to administer justice and provide security for all citizens. Rulers and administrators must be chosen from the best qualified citizens. If an administration betrays the trust of Allah and the people, it has to be replaced. Non-Muslim can administer their personal life of marriage, divorce, foods and inheritance according to the Islamic law or to their own religious teachings. They may pay Zakah or a different tax tributes &#8220;Jizyah&#8221;. They are entitled to full protection and security of the State including freedom of religion.</p>
<p>8. International Life: Man has a common origin, human status and aim. Other people&#8217;s interests and right to life, honour and property are respected as long as the right of Muslim are in tact. Transgression is forbidden. War is only justified if the state security is endangered. During war, destruction of crops, animals and homes, killing non-fighting women, children and aged people are forbidden.</p>
<p><span style="text-decoration:underline;">ReveLation of  Quran:</span></p>
<p>Well before God&#8217;s revelation marked him as a Prophet, Mohammad(p) had rejected the religion of Arabia. This religion called on the worship of several gods, and Mohammad felt that these idols were not responsible for life or creation. Questioning the religion that he was born into, Mohammad (p) found peace in reflection, meditation, and contemplation; however, these acts of private worship did not give Mohammad the answers that he was searching for. In his late thirties Mohammad began a practice of retirement, where he would seclude himself from his family and relations and spend several days in a cave on top of a mountain two miles outside of Makkah. He continued this for many years: during the month of Ramadan, Mohammad would often spend the entire month in seclusion, for some instinct must have told him that in this holiest month he would find the answers to his questions. So, it was in his fortieth year that Mohammad (p) received the revelation from God.</p>
<p>While engaged in worship in a corner of the cave of Hira in the heart of the night, the orphan son of Abdullah who had never studied or attended a school, was suddenly shaken by the summons, &#8220;O Muhammad!&#8221; followed by the command to recite, this being the beginning of revelation. A wave arose from the limitless ocean of Divinity, rent the breast of the Prophet, bewildered and anxious, and filled to the brim the cup of his spirit.<br />
Mohammad was shocked and afraid. How could there be another voice in the cave when he was all alone? Nevertheless, he replied: &#8220;I am not one of those who can read&#8221;. After his answer, he was taken up, and violently hugged and then set free: the voice repeated, &#8220;Read&#8221;. Mohammad could only give the same answer: &#8220;I am not one of those who can read&#8221;. The being repeated the same action, hugging him again. Once again it commanded him to &#8220;Read&#8221;. This time Mohammad gave a different answer: he said, &#8220;What shall I read?&#8221;, and the voice said:</p>
<p>&#8220;Read! In the Name of your Lord, who has created you! He created man from a clot of blood. Read, and your Lord is the Most Gracious, He who has taught by the pen, Taught man what he did not know.&#8221;<br />
[Al-Quran: 96:1-4]</p>
<p>The shining of a light from the realm of the unseen covered and enveloped his being and shone forth on his fair features, giving rise to new and bright life in the darkness of the night. Then, with a painful tumult in his heart and bearing on his shoulders the heaviest responsibility conceivable, he set out for home from the cave of Hira, destined to become the teacher of all human beings and to assume the leadership of humanity on its long march forward.</p>
<p>What force was it that had disquieted him despite his infinite patience, made him anxious despite all his tranquil courage, and plunged his whole being into painful turmoil? Thereafter the envoy of revelation came repeatedly, reciting verses to him, profound and astounding verses that bore no resemblance from the point of view of style and content either to the words of the Prophet himself, eloquent as they were, or to the conventional prose and poetry of the age.</p>
<p>Although the Arabs of the Age of Ignorance knew neither how to read nor how to write and had no historians, philosophers or scholars, they were famed for the excellence of their poetry and the eloquence of their speech. The Prophet, however, had never participated before the beginning of his mission in the cultivation of the arts of poetry and eloquence.<br />
His conduct, on the one hand, and the verses of the Quran, on the other, both testify that he made no compromises in conveying his message. He conveyed the message that he had been ordered to deliver clearly, unambiguously and in utter contradiction both with the beliefs and inclinations of the people and with his own immediate interests. He loudly proclaimed the revelation he had received to the evil and the ignorant, to a people made degenerate and corrupt by the worship of the idols they had fashioned themselves, and he informed them that their sole salvation lay in the worship of the One God.</p>
<p>The new factor that appeared at a particular time in the life of the Prophet and caused him to engage in unprecedented forms of activity was the wondrous phenomenon of revelation, the heavenly message which he as the most lofty and qualified of men had been chosen to receive. Before then, no preliminary effort or particular inclination had been seen on his part that might have led to the bringing about of the sudden and remarkable transformation of the world he was now about to accomplish.</p>
<p>The factor that had this profound effect on Muhammad, that changed that quiet and reflective man into an explosive source of revolutionary energy and enabled him to bring about such a profound transformation of humanity, from within the intense darkness of the Arabs&#8217; Age of Ignorance, was nothing other than revelation. It was a call that penetrated the very depths of the souls of human beings that melted the marrow of their bones, and directed all their strivings to the attainment of perfection.</p>
<p>The command of revelation negated all the false and lying criteria which human beings had regarded as the measure of goodness and considered the sole means of evaluating human characteristics and habits, while, in fact, clothing falsehood in the garment of truth. It brought into operation new and clear criteria which showed human beings the goals to which they should strive to advance and brought about creativity in their lives. The veil of ignorance and silence was torn apart, the human beings&#8217; energies were set to work, the power of thought within them was aroused, and their spirits were borne aloft toward the infinite summit of being.</p>
<p>A people who in their ignorance and lowliness would tear each apart on account of the most insignificant things and had lost all virtue, thanks to their various forms of enslavement, now became, through Islam and its great concept of monotheism &#8211; the true pillar of humanity and the breaker of idols &#8211; so elevated of spirit and so self-sacrificing that they happily abandoned both their lives and their property. The remarkable stories of self-sacrifice on the part of those early Muslims will stand eternally as examples of true nobility.<br />
The Prophet of Islam had the vision and belief of a world leader, but he began to proclaim his Divine summons to monotheism in a relatively restricted sphere, a closed environment where tribal institutions exercised great influence and idols were counted as the most sacred and beloved of objects. It was an environment that was not in any way prepared to accept the message of Divine unity.</p>
<p>The heavenly teachings of Islam and the culture to which they gave rise were superior not only to the intellectual atmosphere prevailing in the idolatrous society of the Arabs but also to all the religious doctrines and cultures of that age.</p>
<p>The program for reforming systems of thought and culture that had become corrupt was laid down by a man who had never studied, who was unlettered, and who knew nothing of the religious books or the civilization of his age.</p>
<p>At first he invited his relatives to worship the Creator, and then the people of Mecca and the Arabian Peninsula. Finally he proclaimed to the entire world his mission as the last of the Prophets.</p>
<p>The Prophet had been born into an environment where human beings engaged in empty boasting out of their shortsightedness and tribal mentality, where privileges were based on unjust social conditions and prejudices. Now he arose and swept aside all those false privileges. He established new values and concepts with respect to labor, life and social relations, in the framework of a series of rules and ordinances, and strove to concentrate all the goals and thoughts of the human being on a program for liberating peoples from slavery, and delivering the oppressed from the tyranny of emperors and kings. Even for those who do not regard these exalted aims as having a heavenly origin will admit that they are among the most exalted and previous values observable in human history.</p>
<p>What is significant about the Revelation, the Message of God, is that it was an act for which the Prophet (pbuh) was ready. Meaning, that he had already forsaken the beliefs of his people and his culture. Mohammad (pbuh) had proved himself ready for prophethood through his pious actions and behavior. Among his people he had already earned the name Al-Amin, The Trustworthy. Moreover, Mohammad (pbuh) was a mature man, one who had lived the majority of his life, and could devote the next twenty-three years of that life to the service of God.<br />
Since different verses of the Qur&#8217;an were being revealed as and when appropriate, it was not possible from the very beginning to write and preserve it in a book form. So, during the initial stage of Islam, major emphasis was laid on memory as a means of preserving the Qur&#8217;an.</p>
<p>When a revelation used to come in the very beginning, the Prophet (sallallahu alayhi wasallam) would tend to repeat its words instantly so that they would be memorized well enough. Thereupon, Allah Almighty directed him through the verses of Soorah Qiyaamah that he need not repeat words in a hurry immediately as revelation came. Allah Almighty would himself endow him with a memory that he will be unable to forget the words of the revelation once its descent has been completed. So it was that the moment the Qur&#8217;anic verses would come to him, they would be committed to his memory the next moment. Thus, the blessed chest of the Prophet (sallallahu alayhi wasallam), was the most protected vault of the Qur&#8217;an, in which there was no chance of even some common mistake, editing or alteration. Moreover, as a matter of additional precaution, he used to recite the Qur&#8217;an before angel Jibra&#8217;eel every year during the month of Ramadhaan; and the year he left this mortal world he completed a cumulative review of Qur&#8217;anic recitation twice with Jibra&#8217;eel. (Saheeh Bukhaari with Fat&#8217;hul Baari)</p>
<p>Again, as it was, he would not restrict his teachings of the Sahaabah (Companions) to just the meaning of the Qur&#8217;an, but had them memorize its words as well. Then, the revered Companions were themselves so enamored with a desire to learn and remember the Qur&#8217;an that every one of them was anxious to get ahead of the other. There were women who claimed no dowry from their husbands except that they would teach the Qur&#8217;an.</p>
<p>Hundreds of Companions, freeing themselves from all other concerns, had devoted their whole lives for this purpose. Not only did they memorize the Qur&#8217;an but also went on repeating it within the nightly prayers. &#8220;When someone migrated from Makkah and came to Madeenah&#8221;, says Ubaadah Ibne Saamit, &#8220;the Prophet (sallallahu alayhi wasallam) would entrust him to one of us Ansaar so that he could teach Qur&#8217;an to the new comer.&#8221; The mosque of the Prophet (sallallahu alayhi wasallam) was so filled with voices generated by learners and teachers of the Qur&#8217;an that the Prophet (sallallahu alayhi wasallam) had to ask them to lower their voices so that mistakes are not made. (Manaahilul &#8216;Irfaan)</p>
<p>Thus memorisation of the Qur&#8217;an was given more emphasis in early Islam as this was the only protected and trustworthy method given the conditions of that time. The reason is that the number of people who could read or write was very limited in those days. The means of publishing books, such as printing press, etc., were not there. Therefore, in that situation, if writing was taken to be sufficient, it would have neither been possible to spread the Qur&#8217;an on an extensive scale nor to protect it reliably. In its place, Allah Almighty had blessed the people of Arabia with a memory of such dimensions that thousands of poetic lines would normally rest in the memory of one person after another. Common ordinary villagers would remember by heart their genealogies and those of their families and unbelievably enough &#8211; even those of their horses! Therefore, this power of memory was well utilized for the conservation and protection of the Qur&#8217;an and it was through it that the verses and chapters of the Qur&#8217;an reached all over in to the far corners of Arabia.<br />
Besides having the Qur&#8217;an committed to memory, the Prophet (sallallahu alayhi wasallam) made special arrangements to have the Qur&#8217;an committed to writing as well. Zayd Ibne Thaabit says: &#8220;I used to write down the words of wahee for him. When wahee came to him he felt burning with heat and the drops of perspiration would start rolling down on his body like pearls. When this state would go away from him, I would present myself before him with shoulder-bone or a piece (of something else). He would go on dictating and I would go on writing. When I would be finished with writing, the shear weight of copying the Qur&#8217;an would give me the feeling that my leg is going to break and that I will never be able to walk. In any case, when I would be finished with writing, he would say: &#8216;Read.&#8217; I would read it back to him if there was a shortcoming, he would have it corrected and then let it be known to people. (Majma&#8217;uz Zawaa&#8217;id with reference to Tabraani)</p>
<p>Thus, there existed, during the time of the Prophet (sallallahu alayhi wasallam), a copy of the Noble Qur&#8217;aan which he had arranged to be committed to writing under his supervision. Although, it was not there as a formally prepared book, but it certainly was there in the form of various units of available writing materials. Along with it, it was also the practice of some revered Companions that they would make copies of the Qur&#8217;anic verses and keep them for personal recollection. This practice was common since the very early period of Islam. Accordingly, much before Umar embraced Islaam, his sister and brother-in-law had in their possession verses of the Qur&#8217;aan which they had written and kept in a book form. (Seerah Ibne Hishaam)</p>
<p>After reading about the Revelation of the Holy Qur&#8217;an, you might find the following of interest:<br />
How the Holy Qur&#8217;an was preserved:  Zayd Ibne Thaabit says: &#8220;I used to write down the words of wahee for him. When wahee came to him he felt burning with heat and the drops of perspiration would start rolling down on his body like pearls. When this state would go away from him, I would present myself before him with shoulder-bone or a piece (of something else). He would go on dictating and I would go on writing. When I would be finished with writing, the shear weight of copying the Qur&#8217;an would give me the feeling that my leg is going to break and that I will never be able to walk. In any case, when I would be finished with writing, he would say: &#8216;Read.&#8217; I would read it back to him and if there was a shortcoming, he would have it corrected and then let it be known to people.<br />
The Demand of the Qur&#8217;an for a Direct Confrontation: From the very first day that the Prophet began preaching his message of monotheism, he summoned people also to a realistic vision of the world. When inviting them to faith, he addressed their wisdom and intelligence and called on them to use their eyes and their ears to perceive the truth.<br />
Do we deserve the Qur&#8217;an ? The student of the Qur&#8217;an will find out that, Qur&#8217;an is telling us that the messengers of Allah will lead the people from darkness into the light and that nowhere in the Qur&#8217;an does Allah tell us a story of a community misled by its messenger or given the wrong teachings by him.</p>
<p><span style="text-decoration:underline;">The Preaching of Islam:</span></p>
<p>1 When every method of persuasion (over 13 years of preaching) had failed, the Prophetsa took to the sword… that sword removed evil and mischief, the impurities of the heart and the filth of the soul. The sword did something more. It removed their blindness—they could see the light of truth—and it also cured them of their arrogance; arrogance which prevents people from accepting the truth… stiff necks and proud heads bowed with humility.                                                                          —Maulana Abul Ala Maududi</p>
<p>Muhammad preached Islam with a sword in one hand and the Quran in the other.</p>
<p>—Prof. Wilfred Cantwell Smith</p>
<p>2 The critics are blind. They cannot see that the only sword Muhammad wielded was the sword of mercy, compassion, friendship and forgiveness—the sword that conquers enemies and purifies hearts. His sword was sharper than the sword of steel.</p>
<p align="right">—Gyanandra Dev Sharma Shastri</p>
<p>These are two conflicting views about the way in which the message of Islam was conveyed to the world. Critics, especially orientalists, claim that the wars the Prophet of Islamsa fought were offensive wars and that people were converted by force. According to objective historians, however, this view is not upheld by the facts. The Prophetsa did not use force to preach and all the battles he fought were defensive. The expansion of Islam was due to the Prophet’ssa spiritual and moral power.</p>
<p>Nevertheless, the view that Islam was spread by force is, unfortunately, held by some Muslim leaders. They, like the orientalists, divide the life of the Prophetsa into Meccan and Medinite periods. They maintain that at Mecca he was weak and powerless, hence that compromising and submissive attitude of peaceful co-existence. Then, having gained some power at Medina, he resorted to the sword, according to this school of thought.</p>
<p>Had he not done so there would have been no spiritual revolution in Arabia and Islam would not have spread. The late Maulana Abul Ala Maududi was a leading proponent of this view. In his book, Al-Jihad fil Islam, the Maulana says:</p>
<p>The Messenger of Allahsa invited the Arabs to accept Islam for 13 years. He used every possible means of persuasion, gave them incontrovertible arguments and proofs, showed them miracles and put before them his life as an example of piety and morality. In short, he used every possible means of communication, but his people refused to accept Islam.</p>
<p>It grieves my heart to quote the rest of this passage but it needs to be set out.</p>
<p>When every method of persuasion had failed, the Prophet took to the sword.</p>
<p>That sword removed evil mischief, the impurities of evil and the filth of the soul. The sword did something more—it removed their blindness so that they could see the light of truth, and also cured them of their arrogance; arrogance which prevents people from accepting the truth, stiff necks and proud heads bowed with humility.</p>
<p>As in Arabia and other countries, Islam’s expansion was so fast that within a century a quarter of the world accepted it. This conversion took place because the sword of Islam tore away the veils which had covered men’s hearts2</p>
<p>The above statement is doubly unfortunate because it was made by a Muslim scholar who claimed to be mizaj-shanasi-Rasul, the one who found himself in complete harmony with the mind and heart of the Prophetsa, so much so that he acquires a measure of authority in explaining the true meanings of the words and deeds of the Prophetsa—a claim which, if accepted, would give the claimant as much or more right to represent than the Holy Prophetsa enjoyed vis-à-vis his understanding of the Word of God. This means that the Maulana’s understanding is tragic beyond words—it has been made by a Muslim leader and repeats a baseless assertion of Islam’s enemies. It is the biased orientalists who accused the Prophetsa of converting people by force. The Maulana’s phraseology appears to glorify Islam, but in reality it endorses the accusation of the European critics of Islam. R. Dozy said: ‘Muhammad’s generals preached Islam with a sword in one hand and the Quran in the other.’ Smith asserted that it was not the generals but the Prophetsa himself who ‘preached with a sword in one hand and the Quran in the other’. George Sale wrote: ‘When the followers of the Prophet increased in number he claimed that God had allowed him to attack the unbelievers so that idolatry be destroyed and true religion be established.’</p>
<p>The Revd Dr C. G. Pfander, who was actively engaged in missionary work among Indian Muslims during the latter part of the nineteenth century, provoked great unrest by writing controversial tracts to expose, as he put it, ‘The false Prophet of Islam’. In one such tract he said:</p>
<p>1. For 13 years Muhammad preached his new religion in conciliatory terms and with great patience.</p>
<p>2. Now (in Medina) he became Al-Nabiyyussaif, ‘The sword-wielding Prophet’, and since then Islam’s strongest argument has been the sword.</p>
<p>3. If we study the behavior of Muhammad’s followers we notice that they thought it was not necessary for them to follow a religious and moral code. God demanded from them only one thing: that they should fight for God with swords, arrows, daggers and sabres to continue to kill3</p>
<p>And after this introduction the Revd Dr Pfander concluded: ‘You have to choose between Jesus, Word of God, and Hazrat Muhammad, son of Abdullah; between one who devoted his life to acts of piety and one who dedicated his life to the sword.4</p>
<p>Aloy Spranger, Henry Copey and many other critics of Islam followed the same line of attack on both Islam and the Prophetssa. Washington Irving went a step further; printed on the title page of one of his books is an imaginary painting of the Prophetsa with a sword in one hand and the Quran in the other.5</p>
<p>If one compares all that has been quoted above with the opening quotation of Maulana Maududi’s AI-Jihad fil Islam, one finds the Prophet’ssa critics in agreement. Both the Maulana and the orientalists maintained that Islam had a violent nature. Yet, despite this belief, the Maulana believed in Islam while they rejected it. Apart from the wording, there is no difference between paragraphs 1, 2 and 3 of the quotation from Maulana Maududi above and the quotation from Dr Pfander above. But one shows the respect of a Muslim; the other, the sarcasm of a bitter critic.</p>
<p>The snide remarks of the orientalists about the Prophet of Islamsa are as unsurprising as they are hurtful. They are sometimes made out of ignorance, but mostly out of malice. The hostility towards Islam colors the objectivity of even the most balanced historian. But most hurtful of all are the writings of Muslims who claim devoutly to follow the Prophetsa, yet present him, either through ignorance or arrogance, as a barbarian who wielded the sword to convert and conquer.</p>
<p>Maulana Mandudi was not convinced of the inherent beauty of Islam or that it could conquer hearts by its spiritual force alone, either in the past or present. He said:</p>
<p>Human relations and associations are so integrated that no state can have complete freedom of action within its own principles, unless those same principles are in force in a neighboring country. Therefore, Muslim groups will not be content with the establishment of an Islamic state in one area alone. Depending on their resources, they should try to expand in all directions. On one hand, they will spread their ideology and on the other they will invite people of all nations to accept their creed, for salvation lies only in it. If their Islamic state has power and resources it will fight and destroy non Islamic governments and establish Islamic states in their place.6</p>
<p>Maulana Maududi supports Sir William Muir’s twisted views of the Prophetsa and of Islam. In his biography of the Prophetsa, which he wrote to expose ‘the false Prophet of Islam’ 7 at the request of Dr Pfander, Sir William Muir said: ‘The sword of Mahomet, and the Coran are the most fatal enemies of civilization, liberty and truth which the world has yet known.’ 8</p>
<p>The great Hindu leader, Gandhi ji, in his earlier days, must have been influenced by a distorted picture of Islam such as this when he said: ‘Islam was born in an atmosphere of violence. At that time its determining force was the sword and even today it is the sword.’ But Gandhi ji was an observer of great insight and subsequently he corrected himself and wrote in Young India: ‘The more I study the more I discover that the strength of Islam does not lie in the sword.’</p>
<p>Other Hindus—even Arya Samajists, who made an objective study of Islam—followed Gandhi ji in his ‘discovery’. Pandit Gyanandra Dev Sharma Shastri said:</p>
<p>Biased critics of Islam and especially those who want to provoke Hindu-Muslim riots in the country say that Hazrat Muhammad after acquiring power in Medina could not maintain his facade of mercy and kindness.There he used force and violence and became a murderous prophet to achieve his life-long aim of power, status and wealth. He fell short of his own ideal of patience, moderation and endurance. But this is the view of those observers who are prejudicial and partisan, who are narrow minded and whose eyes are covered by a veil of ignorance. They see fire instead of light, ugliness instead of beauty and evil instead of good. They distort and present every good quality as a great vice. It reflects their own depravity…</p>
<p>The critics are blind. They cannot see that the only ‘sword’ Muhammad wielded was the sword of mercy, compassion, friendship and forgiveness—the sword that conquers enemies and purifies their hearts. His sword was sharper than the sword of steel.9</p>
<p>No comment! One only wishes that Maulana Maududi, a follower of the Prophet Muhammadsa, had been as fair to the Prophetsa as a follower of Krishnaas had been. Non-Muslims who have studied the history of Islam have had to admit that the Prophetsa was not only magnanimous and kind, but also a paragon of human virtues. Another Hindu, the editor of the Sat Updaish, wrote:</p>
<p>Some people say that Islam was preached by the sword, but we cannot agree with this view. What is forced on people is soon rejected. Had Islam been imposed on people through oppression, there would have been no Islam today. Why? Because the Prophet of Islam had spiritual power, he loved humanity and he was guided by the ideal of ultimate good.10</p>
<p>The anti-Muslim stance of the Arya Samaj movement is well known. Its founder, Swami Dayanand, was highly critical of Islam and its Prophetsa and yet the following statement was made by a Hindu at a meeting sponsored by the Arya Samaj in Lahore. The editor of the Vedic Magazine and a former professor of Gurukul, Kangri Ram Dev, said:</p>
<p>Sitting in Medina, Muhammad Sahib (peace be to him) held the Arabs spellbound; he filled them with spiritual strength; strength that makes devtas [gods] out of men… it is incorrect to say that Islam spread with the force of the sword. It is a fact that the sword was never wielded to propagate Islam. If religion can be spread by force then let anyone try it today.11</p>
<p>The last sentence of the above passage is a challenge no one would ever accept—not even Maulana Maududi. No sword can change a heart and turn belief into disbelief. There was a long chain of prophets before the Prophet of Islamsa and it is an historical truth that every prophet was opposed by force. Every time a prophet taught the true religion he was opposed by the sword and yet true religion spread and the sword failed to cut it back. If all past prophets and their followers could stand against the sword’s might, how is it possible that Muhammadsa could have adopted a different approach and taken to the sword—the instrument of oppression, not truth? There is no greater injustice than to accuse him of using force to change people’s beliefs.</p>
<p>Another non-Muslim scholar, Dr D. W. Leitz, in rebutting this false charge, based his argument on the Quran itself. He said:</p>
<p>All these arguments, advanced to prove that the purpose of jihad was to spread Islam by force, are contradicted by the Quran. The Quran says that the purpose of jihad is to protect mosques, churches, synagogues and cloisters.12</p>
<p>After such a clear defense of the Prophetssa, let so-called Muslims who accuse him of wielding the sword answer this Quranic question: ‘Do they not ponder over the Quran, or is it that their hearts are locked up from within? (47.25) Maulana Maududi, the author of the voluminous commentary on the Quran, Tafhim-ul-Quran, must have read this verse many times. Did it not occur to him that interpreting the Quran for political purposes might lead the commentator astray? The Maulana then says:</p>
<p>This was the policy which was adopted by the Prophetsa and his rightly guided caliphs. Arabia, where the Muslim Party was first formed, was the first to be put down. After this, the Prophetsa sent invitations to all neighboring countries, but did not wait to see whether these invitations were accepted. As soon as he acquired power, he started the conflict with the Roman Empire. Abu Bakr became the leader of the Party after the Prophetsa and attacked both the Roman and Persian Empires and Umar finally won the war.13</p>
<p>This is virtually a declaration of war against all non-Muslim neighboring states—they are safe only as long as the Muslim state is weak. Had the above passage been written by a Marxist historian from the Communist Party, one would not have given it a second glance. But it is the considered opinion of a Muslim leader of Maulana Maududi’s stature. As such, it is certainly far more insulting to the Prophetsa than all that Muir, Pfander, Smith and other critics of Islam have written. The above passage was translated from the Maulana’s original Urdu. The words: ‘Muslim Party’ were used deliberately by Maududi. He was degrading the Muslim umma to the status of a political party. He was well aware of the difference between the two words, for in another book he said: ‘The other word the Quran has used for “party” is umma.14 Having dubbed Muslims a political party, the Maulana either subconsciously or, more likely, deliberately, equates the Prophetsa with a political party leader, assigning to him the morals of a politician. How else can one explain the following passage written by the Maulana?</p>
<p>After this the Prophetsa sent invitations to all the neighboring countries, but he did not wait to see whether these invitations were accepted or not. As soon as he acquired more power he started the conflict with the Roman Empire.</p>
<p>It is amazing that a Muslim scholar could even by implication suggest that the Prophet was guilty of a Hitler-style invasion—Naaudhu billah.15 The Prophetsa was the Prince of Peace, not an invader. Maulana Maududi loved political power and, unfortunately, this colors his interpretation of Islamic history. But Islam does not need politics to prop it up. In Bengal, now Bangladesh, Muslims were an infinitesimal minority in the middle of the eighteenth century when the British took over the administration from the Mughals. By the time Bengal became independent in 1947 it had a Muslim majority. Muslims had no political control of the area nor was there any migration of Muslims from northern India during British rule. This increase in Bengal’s Muslim population was owing to peaceful conversion by traveling sufis, the roving Muslim missionaries and the Imams of the village mosques.</p>
<p>Thomas Arnold’s observation on the subject is significant. He said: ‘Islam has gained its greatest and most lasting missionary triumphs in times and places in which its political power has been weakest.”16 Maulana Maududi probably never read the history of Islam in Bengal, Malaysia or Indonesia. He was so enthralled by the Turko-Afghan and Mughal conquests that he never had time to note that the largest Muslim country in the world, Indonesia, never had a Muslim conqueror—that there was no fighting nor any violence there. That was the case also in Malaysia.</p>
<p>The Prophetsa was obviously innocent. He took up the sword only in self-defense and only when oppression became unbearable. Here is what an objective Sikh has to say on the subject:</p>
<p>In the beginning the Prophet’ssa enemies made life difficult for him and his followers. So the Prophetsa asked his followers to leave their homes and migrate to Medina. He preferred migration to fighting his own people, but when oppression went beyond the pale of tolerance he took up his sword in self-defense. Those who believe religion can be spread by force are fools who neither know the ways of religion nor the ways of the world. They are proud of this belief because they are a long, long way away from the Truth.17</p>
<p><span style="text-decoration:underline;">Role of Young Generation in Islam:</span></p>
<p><span style="text-decoration:underline;"> </span></p>
<p><strong>Living for Islam</strong></p>
<p>Commitment to Islam requires proper creed, worship,and morals and observance of the Islamic guidelines for family life and personal self-discipline, as elaborated in Part One of this book. In addition, true commitment requires every Muslim to dedicate his or her life in a jihad to establish and maintain a system of Islamic governance. Three Types of People There are three broad categories of people:</p>
<p>1) The Materialists The first group is secular in both ideology and practice. Regarding these people the Qur’an says:  And they say: ”There is nothing beyond our life in this world, for we shall not be raised from the dead.” [ Qur’an 6:29] And they say: ”What is there but our life in this world?We shall die as we come to life, and nothing but Time can destroy us.” But of that they have no knowledge; they</p>
<p>merely conjecture. [Qur’an 45:24] The secular humanists including the Communists and the existentialists (or post-modernists), all are products of this materialist ideology. A philosopher once said: ”This universe was not created by either God or man. It has existed in the past and will be a torch of life that burns and dies in the future in accordance with the governing laws of nature.” Lenin commented laconically, ”This is a pleasant description of dialectical materialism.” When mankind ignores the existence of life after death, where all the deeds are accountable, the material world will he man’s greatest goal and have the highest priority in his drive for knowledge They will work for it and drown in</p>
<p>their desires for its delights without limit.</p>
<p>2) The Functional Atheists These people claim to he Believers but are captives of materialism. They believe formally in Allah and the afterlife,and even think they are doing good, but their belief, worship (if any), and morals are pretentious and have no practical effect in life. Basically this type of people are</p>
<p>materialists even though they may perform spiritual acts. Functionally, these people are atheists.</p>
<p>According to Imam Hasan Al-Banna there are three such groups of people. [Hasan Al-Banna, Toward the</p>
<p>Future of Man] He writes, ”The Qur’an has established the purpose of our life and the reason for our creation. First, the Qur’an refers to a group of people who live only for eating and enjoyment: Verily Allah will admit those who believe and do righteous deeds to Gardens beneath which river flow; while those who reject Allah will enjoy (this world) and eat as cattle eat; and the fire will be their abode [Qur’an 47:12]</p>
<p>Second, the Qur’an describes a group of people who bye for the glitter of worldly wealth: Fair in the eyes of men is the love of things they covet: women and sons; heaped-up hoards of gold and silver; horses branded (for blood and excellence); and (wealth of) cattle and well-tilled land. Such are the possessions of this world’s life. But nearness to Allah is the best of the goals. [Qur’an 3:14] Thirdly, the Qur’an designates a group of people who live only to slander and find fault with others and to encourage</p>
<p>mischief and destruction in these word: There is the type of man whose speech about this world’s life may dazzle you, and he calls Allah to witness what is in his heart. Yet he is the most contentious of enemies. When he turns his back, his aim everywhere is to spread mischief throughout the world and destroy crops</p>
<p>and cattle. But Allah does not love mischief. These three goals in life Allah has bid us to avoid, because</p>
<p>He has assigned the believers a higher purpose, which is to guide mankind to the divine path, and to illuminate the universe with the brightness of Islam</p>
<p>3) The Sojourners These people, who view themselves as living only temporarily in the world, are the true believers. They understand the real meaning of life and the value of this world</p>
<p>compared to the hereafter. The Qur’an says” What is the life of this world but play and amusement?</p>
<p>But best is the home in the hereafter for those who are righteous. Will you not then understand. [Qur’an 6:32] This worldly life can not deter them from pursuing the purpose of their creation in this life. Allah says in the Qur’an: I have created jinns and men only that they may serve Me. [Qur’an 51:56] The True Believer conceives the world as a field of struggle. His life, knowledge, business, wealth, home, thoughts are devoted to obeying Allah and fulfilling His will. In contrast, the materialist uses the same capabilities</p>
<p>to fulfill his selfish desires. This is evident in most of the achievements of modern civilization. The goal of this civilization is to maximize human pleasure and not to develop man and the universe toward peace and harmony. Most of the human inventions, such as the automobile, aeroplane, refrigerator, dryer, washer, furniture, clothes, music, and thousands of industrial products are designed to fulfill the</p>
<p><strong>Essential Knowledge</strong></p>
<p>In order to live entirely for Islam and follow the Islamic path, one must master some basic elements of knowledge, among which the following five should be highlighted: 1. The Divine Purpose of Life &#8211; to serve and worship Allah only. [Qur’an 51:56] He it is Who created the heavens and the earth in six days &#8211; and His Throne was over the waters &#8211; that He might try you to determine who is best in conduct. [Qur’an 11:7]</p>
<p>2. The Value of the World Allah tells us: Do you prefer the life of this world to the Hereafter? But little is the comfort of this life as compared with the Life to Come. [Qur’an 9:38] Such are the possessions of this world’s life; but the nearness toAllah is the best of the goals. [Qur’an 3:14]</p>
<p>And in the hadith we read: It has been narrated that one day the Prophet (s) was standing beside a garbage dump and he called to the companions and said: ”Pursue the world.” Then he took a smelly piece of garbage and a rotten bone and said: ”This is the world.” On another day, the Prophet (s) saw the cadaver of a young sheep that had been thrown away by the owner. Then the Prophet (s) turned towards his companions and said: ”Have you ever thought how worthless is this cadaver to the owner. By Allah, the world is more worthless in the eyes of Allah than this cadaver in the eyes of its owner. If the world were equal in value to a mosquito’s wing, surely Allah would not have given the unbelievers even a sip of water.” Then the Prophet (s) said: ”Doomsday is around the corner, but humans are still lusting for the  orld and are distant from Allah.” Then he added. ”The world is a prison for the believers and paradise for the unbelievers.” [Muslim]3. The Certainty of Death Allah tells us: All that is on earth will perish, but the  ace of your Lord will abide for ever &#8211; Full of Majesty, Bounty and Honor. [Qur’an 55:26-27] The Difference Between Right and Wrong In order to live for Islam one must learn the essentials of Islam jurisprudence, which is foundation of Islam and of all Knowledge. Allah the Almighty, has said: Do not approach the  ur’an in Haste, before it has been revealed to you in full, but say, ”O my Sustainer, make me grow in  nowledge.” [Qur’an 20:114] The Prophet (s) said: Verily, knowledge is obtained by learning while  nderstanding is obtained by experience. Whenever Allah wants to benefit a person, He gives him  nderstanding of the din. [Tabrani] Verily, the prophets did not want dinars of dirhams, but knowledge.   oever will accept it, will receive a real wealth. [Abu Da’ud and Tabrani] 5. The Fallacies of Ignorant The wise man should learn to know his enemies. He should understand their way of thinking, their factional divisions, and their way of fighting. Moreover, should study their defects and shortcomings.</p>
<p><strong><em> </em></strong></p>
<p><strong>The Characteristics of People who live for Islam</strong><strong> </strong></p>
<p>Those who live by Islam and for Islam must follow the teachings of Islam, so that its patterns is their lives  are distinguishable form the non-Islamic patterns of others. A life committed to Islam is: Action-Oriented Commitment to practical action is essential because faith is not mere idea by it is rooted in your heart so that its truthfulness can be proved by action. Allah, the Almighty, has said: Verily man is loss, except such as have faith and do good works. [Qur’an 103:2-3] Do you enjoin right conduct on people, and forget (to</p>
<p>practice it) yourselves, and yet you study the Book? Will you not understand? [Qur’an 3:44] Grievously odious is it in the sight of Allah that you do not practice what you preach. [Qur’an 61:3] Al-Ghazali said: ”Two men bring disaster to me, a virtuous man with his falsehood and an ignorance man with</p>
<p>his adoration. The latter dupes people with his adoration and the former dupes people with his falsehood.” The prophet (s) reminded the believers: Be a person who practices wisdom and not one  ho merely talks about it. Problem-Oriented A committed activist is aware of problems encountered by other Muslims and joins them in seeking solution. The Prophet (s) said: Move together with the book of Allah wherever it takes (You).Whoever does not pay special attention to the problems of Muslims, is not one of us.</p>
<p>You are a corner of the corners of Islam, so don’t let it be attacked from your corner. In the battle of Uhud, Saad Ibn Al-Rabie died with 70 wounds on his body. Just before he died, he said to Zaid ibn Thabit: ”Verily, I have smelt the aroma of Paradise. Tell the Ansar that Allah will honor His promises to those</p>
<p>who are sincere toward the Prophet (s) and are able to catch his attention.” Then Allah took his soul. Honorable in the Defense of Truth Pride in one’s faith is one of the characteristics of the Believers. Allah, the Almighty, has said: But honor belongs to Allah and His Messenger, and to the Believers. [Qur’an 63:8]</p>
<p>So lose not heart, nor fall into despair, for you must gain mastery if you are true in faith. [Qur’an 3:139]</p>
<p><strong> </strong></p>
<p><strong>The Compulsory Nature of Islamic Activism</strong></p>
<p>Working for Islam means to reform oneself so that one’s life teaches others true belief and Islamic  ehaviour. Working for Islam equally means to form a society that is committed to the Islamic way of thinking and Islamic way of life, which means to form a government that implements principles of justice embodied in the shariah to guard the rights of every person and community, and establish truth</p>
<p>and justice, and at the same time call others toward Islam &#8211; truth, peace, and justice. These three responsibilities are obligatory not merely for the entire Muslim community but for every individual</p>
<p>Muslim until we have established a system of governance adequate to the task. Until the nations of the world have functionally Islamic governments, every individual who is careless or lazy in working for Islam is sinful. These sins of omission will not be forgiven until they take a quick action to carry out all their responsibilities and Islamic duties.</p>
<p><span style="text-decoration:underline;"><br />
</span></p>
<p><span style="text-decoration:underline;"> </span></p>
<p><span style="text-decoration:underline;