CINXE.COM
Reserve Bank of India - Timelines for Regulatory Approvals
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <!-- InstanceBeginEditable name="doctitle" --> <title>Reserve Bank of India - Timelines for Regulatory Approvals</title> <!-- InstanceEndEditable --> <meta name="description" content="" /> <meta name="author" content="" /> <meta name="viewport" content="width=device-width" /> <script type="text/javascript" src="/js/libs/modernizr-2.5.3.min.js"></script> </head> <body> <form method="post" action="./Timlines.aspx" id="form1"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTUxNDg2MDU4OWRkd6Dzd9coeNCaINohmxKU9WLa75Rjwj1jqG7wqMU0GfY=" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="AC0C9DD7" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAAbZ+Cd2i68DrpACcAnIlNRxi6wX7g7V+51d5y/uZ409MWQ6cu1iZ73N7YF2NPAmCyQ/q33cCQLgaFQSElESF1pcfcX9ZaEV78oETjPwNTvjRyaLpyghhgB3dOM81YQT2c88cBTB9XRuEDEi8m0MBX1c2+wHq96g3hXdVWbPdOnGpw==" /> </div> <link href="/JQuery/css/jquery-ui-1.8.18.custom2.css" rel="stylesheet" type="text/css" /> <link href="/includes/print.css" rel="stylesheet" media="print" type="text/css" /> <link href="/Styles/960.css" rel="stylesheet" type="text/css" /> <link href="/Includes1/rbi.css?v=4.0" rel="Stylesheet" type="text/css" /> <script type="text/javascript" src="/js/libs/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="/JQuery/ui/jquery.ui.revampRBI.js"></script> <script type="text/javascript" src="/js/ImgSaveDisable.js"></script> <!--<script src='//tw.netcore.co.in/smartechclient.js'></script> <script> smartech('create', 'ADGMOT35CHFLVDHBJNIG50K968AU3Q5FOE3L6REE67CQ9HGBQ58G'); smartech('register', '4d6884e503ecf55a3339a37e98b711da'); smartech('identify', ''); smartech('dispatch', 1, { }); </script>--> <script type="text/javascript"> //Redirect to mobile site start function detectmob() { if (screen.width <= 599 || screen.Height <= 975) { return true; } else { return false; } } if (detectmob()) { window.location.href = "https://m.rbi.org.in" + window.location.pathname; } //Redirect to mobile site End $(document).ready(function () { Search(); }); function Search() { highlightTextAutocomplete(); $(".autoSuggest").autocomplete({ source: function (request, response) { var param = { keyWord: document.getElementById('txtSearch').value }; $.ajax({ url: "../Home.aspx/GetKeywords", data: JSON.stringify(param), dataType: "json", type: "POST", contentType: "application/json; charset=utf-8", dataFilter: function (data) { return data; }, success: function (data) { if (data.d.length > 0) { response($.map(data.d, function (item) { return { value: RemoveSpecialChars(item) } })) } else { response([{ label: "No results found", value: ""}]); } }, error: function (XMLHttpRequest, textStatus, errorThrown) { alert(textStatus); } }); }, // select: function (event, ui) { // if (ui.item.value != "") { // window.open("/scripts/SearchResults.aspx?search=" + ui.item.value, '_blank'); // } // }, minLength: 3 }); } function highlightTextAutocomplete() { var oldFn = $.ui.autocomplete.prototype._renderItem; $.ui.autocomplete.prototype._renderItem = function (ul, item) { var t = String(item.value).replace( new RegExp(this.term, "gi"), "<span class='ui-state-highlight'>$&</span>"); if (item.value != "") { return $("<li class='borderAutocomplete'></li>") .data("item.autocomplete", item) .append("<a>" + t + "</a>") .appendTo(ul); } else { return $("<li></li>") .data("item.autocomplete", item) .append("") .appendTo(ul); } }; } function RemoveSpecialChars(inputText) { var filteredString = inputText.replace(/[\*\^\'\!\@\$\.\#\(\)\-\?\<\>\;\"\&\+\{\}\:]/g, ''); //alert(filteredString); return filteredString; } // jQuery(document).ready(function () { // var xmlhttp; // jQuery("#txtSearch").autocomplete( // { // minLength: 3, // delay: 0, // source: function (request, response) { // if (!xmlhttp) { // if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari // xmlhttp = new XMLHttpRequest(); // } // else {// code for IE6, IE5 // xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); // } // } // else if (xmlhttp.readyState != 0) { // xmlhttp.abort(); // } // xmlhttp.onreadystatechange = function () { // if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { // fetchedKeywords = xmlhttp.responseText.split("'"); // // if (fetchedKeywords.length > 10) { // fetchedKeywords.splice(10, fetchedKeywords.length - 10); // } // if (fetchedKeywords != "") response(fetchedKeywords); // else response(null); // } // } // var input = document.getElementById("txtSearch").value; // xmlhttp.open("POST", "/Webservice/KeywordSearch.ashx?q=" + input, true); // xmlhttp.send(); // } // }); // }); function LoadSearchData(id, key) { if (id == "txtSearch") { if (key == 13) { validateSearchText(); return false; } } else validateSearchText(); return true; } function validateSearchText() { if (validation()) { var strloc = new String(document.location.href.toString()); if (strloc.indexOf("SearchResults.aspx") == -1) {// window.open("/scripts/SearchResults.aspx?search=" + document.getElementById("txtSearch").value); } else window.open("/scripts/SearchResults.aspx?search=" + document.getElementById("txtSearch").value, '_parent'); } } function validation() { strSearch = trim(document.getElementById('txtSearch').value); if (strSearch == "") { alert('Please enter the search text'); return false; } else { //var strFilterChars = new RegExp("[~`!@#$%^&*()_+-={}\\[\\]:/\\\\\";|'<>,.?]"); var strFilterChars = new RegExp("^[0-9a-zA-Z ]*$"); if (!strFilterChars.test(strSearch)) { alert("Please remove special characters from search text"); return false; } } return true; } function trim(value) { value = value.replace(/^\s+/, ''); value = value.replace(/\s+$/, ''); return value; } </script> <style type="text/css"> .blink_msm1 { -webkit-animation-name: blinker; -webkit-animation-duration: 3s; -webkit-animation-timing-function: linear; -webkit-animation-iteration-count: infinite; -moz-animation-name: blinker; -moz-animation-duration: 3s; -moz-animation-timing-function: linear; -moz-animation-iteration-count: infinite; animation-name: blinker; animation-duration: 3s; animation-timing-function: linear; animation-iteration-count: infinite; } @-moz-keyframes blinker { 0% { opacity: 1.0; } 50% { opacity: 0.0; } 100% { opacity: 1.0; } } @-webkit-keyframes blinker { 0% { opacity: 1.0; } 50% { opacity: 0.0; } 100% { opacity: 1.0; } } @keyframes blinker { 0% { opacity: 1.0; } 50% { opacity: 0.0; } 100% { opacity: 1.0; } } .blink_NewWebsite { animation:blinker 1.5s linear infinite; color:blue; font-size:1.5em; margin-bottom:0px; } @keyframes blinker { 50%{ opacity:0; } } </style> <div class="top_setting"> <div class="container_12"> <div class="grid_5 top_settings"> <a href="#mainsection">Skip to main content </a> </div> <div id="UsrFontCntr_tblThemes" style="float: right" class="grid_4 prefix_3 top_settings"> <span class="fonts"> <a id="UsrFontCntr_LinkBtnFontIncrease" title="Increase Font Size" href="javascript:__doPostBack('UsrFontCntr$LinkBtnFontIncrease','')" style="text-decoration:none;"><img src="/images/font-increase.gif" alt="Increase Font Size"/></a></span> <span class="fonts"> <a id="UsrFontCntr_LinkBtnFontRegular" class="aspNetDisabled" title="Regular Font Size" style="text-decoration:none;"><img src="/images/font-reset.gif" alt="Regular Font Size"/></a></span> <span class="fonts"> <a id="UsrFontCntr_LinkBtnFontDecrease" title="Decrease Font Size" href="javascript:__doPostBack('UsrFontCntr$LinkBtnFontDecrease','')" style="text-decoration:none;"><img src="/images/font-decrease.gif" alt="Decrease Font Size"/></a></span> <span class="black"> <a id="UsrFontCntr_LinkBtnAccessibilty" title="Apply Dark Theme" href="javascript:__doPostBack('UsrFontCntr$LinkBtnAccessibilty','')" style="text-decoration:none;"><img src="/images/dark-theme.gif" alt="Apply Dark Theme"/></a></span> <span class="white"> <a id="UsrFontCntr_LinkBtnUndoAccessibilty" class="aspNetDisabled" title="Apply Normal Theme" style="text-decoration:none;"><img src="/images/bright-theme.gif" alt="Apply Normal Theme"/></a></span> <a onclick="javascript:window.print();" id="A1" title="Print This Page"> <img src="/images/print-icon.png" alt="Print this page" class="print" /></a> <div style="float: right"> <label style="margin-right: 6px;color: #000000;"> Language</label><a class="lnk-language" id="lnkhindi" title="Hindi site" href="https://www.rbi.org.in/hindi/Home.aspx">हिंदी</a></div> </div> <div class="clearfix"> </div> </div> <div> <div style="background: url(/images/Innerstripbg1.jpg);height: 32px;min-width: 100%;float: left;background-repeat: repeat;text-align: center;"> <a class="blink_NewWebsite" target="_blank" href="https://website.rbi.org.in" style="color: #205db1;text-decoration: none;"> <span>Click here to <b><span style="font-size: 20px;padding: 7px;">Visit the RBI’s new website</span></b> </span></a> </div> </div> </div> <div class="container_12"> <div class="grid_4" role="banner"> <h1 class="logo"> <a href="/home.aspx"> <img src="/images/rbi-company-logo.jpg" alt="Reserve Bank of India" /></a></h1> </div> <div class="grid_5" align="right" role="search" style="float: right"> <label for="searchbox" class="search_label"> Search the Website</label> <input name="UsrFontCntr$txtSearch" type="text" maxlength="103" id="txtSearch" class="search_box autoSuggest" onkeydown="return LoadSearchData('txtSearch',event.keyCode);" placeHolder="Search" /> <button id="btnSearch" onclick="return LoadSearchData('btnSearch',event.keyCode);" type="button" class="search_button"> Search</button> </div> <div class="grid_2" align="CENTER" role="" style="float: right"> <h1 class="logo"> <img src="../images/BBBP_Logo_4.jpg" alt="BBBPLogo" style="padding-top: 10px;"> </h1> </div> <div class="clearfix"> </div> </div> <!-- NAVIGATION START--> <nav role="navigation"> <div class="top-newmenu"> <div class="midmenu"> <ul> <li><a href="https://rbi.org.in/home.aspx">Home</a></li> <li><a href="/Scripts/AboutusDisplay.aspx">About Us</a></li> <li><a href="/Scripts/NotificationUser.aspx">Notifications</a></li> <li><a href="/Scripts/BS_PressReleaseDisplay.aspx">Press Releases</a></li> <li><a href="#">Speeches & Media Interactions<img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/BS_ViewSpeeches.aspx">Speeches</a></li> <li><a href="/Scripts/BS_ViewInterviews.aspx">Media Interactions</a></li> <li><a href="/Scripts/Lectures.aspx">Memorial Lectures</a></li> </ul> </li> <li><a href="#">Publications <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/Publications.aspx?publication=Annual">Annual</a></li> <li><a href="/Scripts/Publications.aspx?publication=HalfYearly">Half-Yearly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Quarterly">Quarterly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Bimonthly">Bi-monthly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Monthly">Monthly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Weekly">Weekly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Occasional">Occasional</a></li> <li><a href="/Scripts/Publications.aspx?publication=Reports">Reports</a></li> <li><a href="/Scripts/OccasionalPublications.aspx?head=Working Papers">Working Papers</a></li> </ul> </li> <li><a href="#">Legal Framework <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/Act.aspx">Act </a></li> <li><a href="/Scripts/Rules.aspx">Rules </a></li> <li><a href="/Scripts/Regulations.aspx">Regulations </a></li> <li><a href="/Scripts/Schemes.aspx">Schemes </a></li> </ul> </li> <li><a href="#">Research <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/ExternalResearchSchemes.aspx">External Research Schemes</a></li> <li><a href="/Scripts/OccasionalPapers.aspx">RBI Occasional Papers</a></li> <li><a href="/Scripts/OccasionalPublications.aspx?head=Working%20Papers">Working Papers</a></li> <li><a href="/Scripts/BS_ViewBulletin.aspx">RBI Bulletin</a></li> <li><a href="/Scripts/Project1.aspx">History</a></li> <li><a href="/Scripts/Occas_DRG_Studies.aspx">DRG Studies</a></li> <li><a href="/Scripts/KLEMS.aspx">KLEMS</a></li> <li><a href="/Scripts/StateStatisticsFinances.aspx">State Statistics and Finances</a></li> </ul> </li> <li><a href="#">Statistics <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/Statistics.aspx">Data Releases</a></li> <li><a href="https://data.rbi.org.in" target="_blank">Database on Indian Economy</a></li> <li><a href="/scripts/FS_PDS.aspx">Public Debt Statistics</a></li> </ul> </li> <li><a href="#">Regulatory Reporting<img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/scripts/BS_Listofallreturns.aspx">List of Returns</a></li> <li><a href="/scripts/DataDefinition.aspx">Data Definition</a> <!--<ul> <li><a href="../scripts/Assets.aspx">Assets</a></li> <li><a href="../Scripts/Liabilities.aspx">Liabilities</a></li> <li><a href="../Scripts/OffBalanceSheetItems.aspx">Off-Balance Sheet Items</a></li> <li><a href="../Scripts/ProfitandLossAccountItems.aspx">Profit and Loss Account Items</a></li> <li><a href="../Scripts/Miscellaneous.aspx">Miscellaneous</a></li> </ul>--> </li> <li><a href="/scripts/ValidationRules.aspx">Validation rules/ Taxonomy</a></li> <li><a href="/scripts/ReportingPlaform.aspx">List of RBI Reporting Portals</a></li> <li><a href="/scripts/ReportingFAQ.aspx">FAQs of RBI Reporting Portals</a></li> </ul> </li> </ul> </div> </div> </nav> <!-- NAVIGATION END--> <!--HEADER END--> <input type="submit" name="UsrFontCntr$btn" value="" id="btn" style="visibility: hidden; height: 0px; width: 0px;" /> <div class="container_12"> <a id="mainsection" name="mainsection"></a> <div class="grid_12 breadcrumbs"> <ul> <li><a href="../Home.aspx">Home</a></li> </ul> </div> <div class="clear"> </div> <div class="grid_3 omega"> <div class="grid_3 margin0"> <!--wrapper--> <div id="menubar"> <div class="menuButton"> <a href="#1">Department of Regulation</a> </div> <div class="menuButton"> <a href="#2">Department of Banking Supervision</a> </div> <div class="menuButton"> <a href="#3">Department of Currency Management/Issue Department</a> </div> <!--<div class="menuButton"> <a href="#4">Department of Non-Banking Regulation</a> </div>--> <div class="menuButton"> <a href="#5">Department of Non-Banking Supervision</a> </div> <div class="menuButton"> <a href="#6">Department of Payment and Settlement Systems</a> </div> <div class="menuButton"> <a href="#7">Foreign Exchange Department</a> </div> <div class="menuButton"> <a href="#9">Financial Markets Regulation Department</a> </div> <div class="menuButton"> <a href="#10">Internal Debt Management Department</a> </div> <!--<div class="menuButton"> <a href="#11">Department of Co-operative Bank Regulation (DCBR)</a> </div>--> <div class="menuButton"> <a href="#8">Mumbai Regional Office, Banking Department</a> </div> </div> <!--/wrapper--> </div> </div> <div class="grid_9 alpha content_area omega"> <div id="example-min" class="text1"> <h2 class="page_title"> Timelines for Regulatory Approvals</h2> <p align="center" class="paraheader"><a id="1"></a>I. Department of Regulation</p> <p align="center" class="head">Commercial Banks</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center" valign="top">Sr. No.</th> <th width="69%" align="center" valign="top">Description of Regulatory Approval</th> <th width="21%" align="center" valign="top">Time required </th> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top">Private Bank Licence- In principle approval</td> <td align="center" valign="top">90 days@</td> </tr> <tr> <td align="center" valign="top">2.</td> <td valign="top">Approval for acquisition of five per cent or more of the paid-up share capital or voting rights in a banking company</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">3.</td> <td valign="top">Approvals to banks for holding non-banking assets beyond 7 and upto 12 years, in terms of Section 9 of Banking Regulation Act, 1949</td> <td align="center" valign="top">60 days£</td> </tr> <tr> <td align="center" valign="top">4.</td> <td valign="top">Approval to banks for redemption / exercise of call option / coupon payment on capital instruments</td> <td align="center" valign="top">15 days</td> </tr> <tr> <td align="center" valign="top">5.</td> <td valign="top">Approval to banks for establishing a subsidiary/joint venture/associate or investments in financial and non-financial services companies requiring prior approval of RBI.</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">6.</td> <td valign="top">Approval to banks for undertaking various financial services departmentally or expansion of the scope of activities of the group entities of banks (subsidiaries/JVs).</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">7.</td> <td valign="top">Appointment / re-appointment of whole time directors (MD & CEO / EDs/ Jt. MDs) and Part-time Chairmen (non-whole time directors) in Private Sector Banks, including SFBs, PBs and LABs</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">8.</td> <td valign="top">Appointment/re-appointment of CEOs of Foreign Banks and whole time directors (MD & CEO / EDs) and Part-time Chairmen (non-whole time directors) of Wholly Owned Subsidiaries (WOS) of Foreign Banks operating in India</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">9.</td> <td valign="top">Remuneration, Bonus and Employee Stock Option (ESOP) of whole time directors (MD & CEO / EDs/ Jt. MDs ) and Part-time Chairmen (non-whole time directors) of Private Sector Banks, including SFBs, PBs and LABs</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">10.</td> <td valign="top">Remuneration, Bonus and Employee Stock Option of CEOs of Foreign Banks and whole time directors (MD & CEO / EDs) and Part-time Chairmen (non-whole time directors) of Wholly Owned Subsidiaries (WOS) Wholly Owned Subsidiaries (WOS) operating in India</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">11.</td> <td valign="top">Clearances for appointment of whole time directors, non-executive chairmen and non-official directors of public sector banks</td> <td align="center" valign="top">60 days</td> </tr> <tr> <td align="center" valign="top">12.</td> <td valign="top">Approval of Annual Banking Outlet Expansion Plan (ABOEP) in respect of Domestic Scheduled Commercial Banks (excluding RRBs) for which the general permission has been withdrawn and for Payment Banks and Local Area Banks</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">13.</td> <td valign="top">Authorization to banks for importing gold/silver under Foreign Trade Policy</td> <td align="center" valign="top">60 days</td> </tr> <tr> <td align="center" valign="top">14.</td> <td valign="top">Authorization for opening of banking outlets under approved ABOEP</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">15.</td> <td valign="top">Processing of applications of banks to set up an IBU at GIFT City*</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">16.</td> <td valign="top">Approval for amalgamation of a banking company with another banking company</td> <td align="center" valign="top">90 days$</td> </tr> <tr> <td align="center" valign="top">17.</td> <td valign="top">NOC for amalgamation of a holding company (an NBFC) with a banking company</td> <td align="center" valign="top">90 days$</td> </tr> <tr> <td colspan="3" valign="top" align="justify">@The timeline for issue of in-principle approval for private sector bank licences commences from receipt of report from the Independent External Advisory Committee.<br> £ The timeline is subject to receipt of complete information / document by RBI from the bank<br> $ RTL is subject to receipt of complete information/ documents from the banks/ institutions concerned as well as receipt of regulatory/ supervisory inputs, due diligence reports/ approvals from other regulators and the concerned Government Agencies/ Departments including RBI’s other concerned departments.</td> </tr> </table> <p align="center"> <span class="head">Regional Rural Banks</span> </p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr> <td width="10%" align="center" valign="top">18.</td> <td width="69%" valign="top">Inclusion in/Exclusion from Second Schedule of RBI Act </td> <td width="21%" align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">19.</td> <td valign="top">Permission for opening of Banking Outlets/ issue of licence for Banking outlets/ service branches/ Regional Offices</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">20.</td> <td valign="top">Permission for shifting of Banking Outlets outside the Revenue Centre</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">21.</td> <td valign="top">Appropriation from the Reserve Fund under Section 17(2) of the BR Act, 1949</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">22.</td> <td valign="top">Permission to extend internet banking facility to customers</td> <td align="center" valign="top">30 Days</td> </tr> <tr> <td align="center" valign="top">23.</td> <td valign="top">Permission to extend mobile banking to customers</td> <td align="center" valign="top">30 Days</td> </tr> <tr> <td align="center" valign="top">24.</td> <td valign="top">Approval to banks for undertaking various financial services departmentally.</td> <td align="center" valign="top">90 Days</td> </tr> </table> <br> <p class="head" align="center">NBFCs</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center" valign="top">Sr. No</th> <th width="69%" align="center" valign="top">Description of Regulatory Approval</th> <th width="21%" align="center" valign="top">Time required</th> </tr> <tr> <td colspan="3" valign="top" class="head">SRO</td> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top">Recognition to Self-Regulatory Organisation (SRO)</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td colspan="3" valign="top" class="head">Non-Banking Finance Companies (NBFCs)</td> </tr> <tr> <td align="center" valign="top">2.</td> <td valign="top">Issue of Certificate of Registration (other than Securitization and Reconstruction Companies)</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">3.</td> <td valign="top">NOC to sponsor Infrastructure Debt Fund by NBFC</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">4.</td> <td valign="top">Change of control/ownership/management of an NBFC</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">5.</td> <td valign="top">Conversion of existing NBFCs to other categories such as Core Investment Companies-Non Deposit taking-Systemically Important (CIC-ND-SI) , NBFC-Micro Finance Institutions (NBFC-MFIs), NBFC-Infrastructure Finance Companies (IFCs) and NBFC-Factors</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">6.</td> <td valign="top">Declaration of dividend– (In case there are special reasons or difficulties for any PD in strictly adhering to the guidelines relating to Dividend, it may approach RBI in advance for an appropriate ad hoc dispensation in this regard)</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">7.</td> <td valign="top">Approval to NBFCs for establishing a subsidiary/joint venture/associate or investments in financial and non-financial services companies requiring prior approval of RBI.</td> <td valign="top" align="center">90 Days</td> </tr> <tr> <td align="center" valign="top">8.</td> <td valign="top">Approval to NBFCs for undertaking various financial services departmentally or expansion of the scope of activities of the group entities (subsidiaries/JVs) wherever approval is required.</td> <td valign="top" align="center">90 Days</td> </tr> <tr> <td colspan="2" valign="top" class="head">Non-Banking Finance Companies (NBFCs)- Housing Finance Companies</td> <td valign="top" align="center"> </td> </tr> <tr> <td valign="top" align="center">9.</td> <td valign="top" align="justify">Approval for acquisition/ transfer of ten per cent or more of the paid-up equity capital of the HFC (accepting/ holding public deposits) by/ to a foreign investor</td> <td valign="top" align="center">90 days</td> </tr> <tr> <td valign="top" align="center">10.</td> <td valign="top" align="justify">Approval for acquisition/ transfer of twenty-six per cent or more of the paid-up equity capital of the HFC.</td> <td valign="top" align="center">90 days</td> </tr> <tr> <td valign="top" align="center">11.</td> <td valign="top" align="justify">Approval to HFCs for establishing a subsidiary/joint venture/associate or investments in financial and non-financial services companies requiring prior approval of RBI.</td> <td valign="top" align="center">90 Days</td> </tr> <tr> <td valign="top" align="center">12.</td> <td valign="top" align="justify">Approval to HFCs for undertaking various financial services departmentally or expansion of the scope of activities of the group entities (subsidiaries/JVs) wherever approval is required.</td> <td valign="top" align="center">90 Days</td> </tr> <tr> <td valign="top" align="center">13.</td> <td valign="top" align="justify">Prior approval of the Reserve Bank for any change in the management of the HFC which would result in change in more than 30 per cent of the directors, excluding independent directors.</td> <td valign="top" align="center">90 days</td> </tr> </table> <p class="head" align="center">ARCs</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center" valign="top">Sr. No</th> <th width="69%" align="center" valign="top">Description of Regulatory Approval</th> <th width="21%" align="center" valign="top">Time required</th> </tr> <tr> <td colspan="3" valign="top" class="head">Asset Reconstruction Companies(ARCs)</td> </tr> <tr> <td valign="top" align="center">1.</td> <td valign="top" align="justify">Approval for inclusion of new sponsor / cessation of sponsor / aggregate transfer of 10% or more of the total paid-up share capital of the ARC by a sponsor during the period of five years commencing from the date of the CoR</td> <td valign="top" align="center">90 days</td> </tr> <tr> <td valign="top" align="center">2.</td> <td valign="top" align="justify">Prior approval of the Reserve Bank for any substantial change in the management of the ARC including appointment of any director on the board of directors of the ARC or managing director or chief executive officer thereof.</td> <td valign="top" align="center">90 days</td> </tr> </table> <p class="head" align="center"> Cooperative Banks</p> <p align="center" class="head">A. Approvals/Permissions given by Central Office for Primary Urban Cooperative Banks</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center">Sr. No.</th> <th width="69%" align="center">Description of Regulatory Approval</th> <th width="21%" align="center">Time required</th> </tr> <tr> <td colspan="3" valign="top" class="head">1. Approvals/Permissions given by Central Office for UCBs</td> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top">Extension of Area of Operation<br> i) beyond adjoining districts and to the entire State of registration<br> ii) beyond the State of registration<br> iii) for multi-state UCBs</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">2.</td> <td valign="top">Shifting of branches – Request from UCBs not conforming to the FSWM (Financially Sound and Well Managed) criteria for shifting of their offices/branches outside the centre/State</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">3.</td> <td valign="top">Shifting of branches of UCBs outside the State of registration</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">4.</td> <td valign="top">Permission to undertake intra-day short selling of G-Secs</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">5.</td> <td valign="top">Permission to extend unsecured advances up to 25% of total assets subject to conditions prescribed in our circular dated April 3, 2010</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">6.</td> <td valign="top">Remission of Debt of Director related loans</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">7.</td> <td valign="top">Grant of permission for raising Long Term (Subordinated) Deposits (LTD)/ Perpetual Non-Cumulative Preference Shares (PNCPS)/ Conversion of deposits to equity</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">8.</td> <td valign="top">Approval for appointment /renewal of appointment of MD/WTD/CEO of Scheduled UCBs (irrespective of Deposit Size) & Non-scheduled UCBs with deposit size of Rs. 1000 crore and above, as per preceding year’s audited balance sheet.</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td colspan="3" valign="top" class="head">2. Approvals/Permissions given by Regional Offices for UCBs</td> </tr> <tr> <td align="center" valign="top">9.</td> <td valign="top">Shifting of offices to different wards/municipal areas</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">10.</td> <td valign="top">Extension of time for submission of Form – V (Furnishing of details of Branches opened)</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">11.</td> <td valign="top">Change of address to same municipal ward, post issue of authorization but before opening of branch</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">12.</td> <td valign="top">Authorisation for opening of branches under Annual Business Plan and new off-site ATMs</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">13.</td> <td valign="top">Approval for opening of specialized branches by UCBs</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">14.</td> <td valign="top">Permission to extend internet banking facility to customers</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">15.</td> <td valign="top">Permission for payment of dividend</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">16.</td> <td valign="top">Change in name of bank</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">17.</td> <td valign="top">Authorization to maintain/renew NRE accounts</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">18.</td> <td valign="top">Approval for appointment/renewal of appointment of MD/WTD/CEO of Non-scheduled UCBs with deposit size Rs. 100 crore or above but less than 1000 crore, as per preceding year’s audited balance sheet.</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">19.</td> <td valign="top">Approvals to banks for holding non-banking assets beyond 7 and upto 12 years, in terms of Section 9 of Banking Regulation Act, 1949</td> <td align="center" valign="top">60 days£</td> </tr> <tr> <td colspan="3" valign="top" class="head">3. Other applications received by the Department for recommendations but approvals/permissions granted by other Departments /Organisations for UCBs</td> </tr> <tr> <td align="center" valign="top">20.</td> <td valign="top">Approvals related to Centralised Payment System</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">21.</td> <td valign="top">MTSS</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">22.</td> <td valign="top">AD-I and AD-II category licences</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">23.</td> <td valign="top">Opening of current account/SGL account</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">24.</td> <td valign="top">Clearing House memberships</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">25.</td> <td valign="top">NDS-OM Membership</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">26.</td> <td valign="top">Permission to extend mobile banking to customers</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">27.</td> <td valign="top">Banker to Issue</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">28.</td> <td valign="top">Merchant Banking</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td colspan="3" valign="top">£ The timeline is subject to receipt of complete information / document by RBI from the bank</td> </tr> </table> <p class="head" align="center">B. Regulatory Approvals for State and Central Cooperative Banks</p> <p class="head" align="center">1. Regulatory approvals granted without involving other departments/agencies</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center">Sr. No.</th> <th width="69%" align="center">Description of Regulatory Approval</th> <th width="21%" align="center">Time required</th> </tr> <tr> <td colspan="3" class="head">State and Central Co-op. Banks</td> </tr> <tr> <td align="center">1</td> <td>Grant of loan/advance against the security of NRE deposits to a resident individual/ firm/ company in India</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">2</td> <td>Approvals to banks for holding non-banking assets beyond 7 and upto 12 years, in terms of Section 9 of Banking Regulation Act, 1949</td> <td align="center">60 days£</td> </tr> <tr> <td align="center">3</td> <td>Investment in shares of other Co-operative Societies situated outside the area of the co-operative bank</td> <td align="center">30 Days</td> </tr> <tr> <td colspan="3">£ The timeline is subject to receipt of complete information / document by RBI from the bank</td> </tr> </table> <p class="head" align="center">2. Regulatory approvals involving inter-office/inter-agency coordination</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center">Sr. No.</th> <th width="69%" align="center">Description of Regulatory Approval</th> <th width="21%" align="center">Time required</th> </tr> <tr> <td colspan="3" class="head">State and Central Co-op. Banks</td> </tr> <tr> <td align="center">1</td> <td>Grant of banking licence- Approval given by Central Office.</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">2</td> <td>Permission to make investments in non-PSU bonds where prescribed criteria are not met</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">3</td> <td>Permission to issue Innovative Perpetual Debt Instruments</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">4</td> <td>Approval to banks for undertaking various financial services departmentally.</td> <td align="center">90 Days</td> </tr> <tr> <td colspan="3" class="head">State Co-op. Banks</td> </tr> <tr> <td align="center">5</td> <td>Permission to State Co-op. Banks for grant of branch licence</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">6</td> <td>Permission to open extension counters</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">7</td> <td>Permission for opening specialized branches for conducting forex business, etc., and for up-gradation of existing extension counters into full-fledged branches</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">8</td> <td>Permission for shifting of a bank branch to a different locality/municipal ward other than the one mentioned in the licence. Approval given by Regional Offices</td> <td align="center">30 Days</td> </tr> <tr> <td align="center">9</td> <td>Inclusion in the 2nd Schedule to RBI Act, 1934. Approval given by Central Office.</td> <td align="center">30 Days</td> </tr> </table> <p align="center" class="paraheader"><a id="2"></a>II. Department of Banking Supervision</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center" valign="top">Sr. No.</th> <th width="67%" align="center" valign="top">Description of Regulatory Approval</th> <th width="23%" align="center" valign="top">Time required </th> </tr> <tr> <td rowspan="13" align="center" valign="top">1.</td> <td valign="top">Approval given to banks and Financial Institutions for Statutory Central Auditors and Statutory Branch Auditors</td> <td align="center" valign="top"> </td> </tr> <tr> <td valign="top">i) Public Sector Banks:</td> <td align="center" valign="top"> </td> </tr> <tr> <td valign="top">a) Statutory Central Auditors</td> <td align="center" valign="top">15 days</td> </tr> <tr> <td valign="top">b) Statutory Branch Auditors</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td valign="top">ii) Private Sector Banks/Foreign Banks:</td> <td align="center" valign="top"> </td> </tr> <tr> <td valign="top">a) Statutory Central Auditors</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td valign="top">b) Statutory Branch Auditors</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td valign="top">iii) Overseas branches of Indian Banks:</td> <td align="center" valign="top"> </td> </tr> <tr> <td valign="top"> Statutory Auditors</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td valign="top">iv) Select Financial Institutions: </td> <td align="center" valign="top"> </td> </tr> <tr> <td valign="top">Statutory Auditors</td> <td align="center" valign="top">21 days</td> </tr> <tr> <td valign="top">v) Cooperative Banks:</td> <td align="center" valign="top"> </td> </tr> <tr> <td valign="top">Statutory Auditors </td> <td align="center" valign="top">30 days</td> </tr> </table> <p align="center" class="paraheader"><a id="3"></a>III. Department of Currency Management/ Issue Department</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center" valign="top">Sr. No.</th> <th width="38%" align="center" valign="top">Description of Regulatory Approval</th> <th width="52%" align="center" valign="top">Time required</th> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top">Opening of currency chests (CCs) by banks </td> <td valign="top">The Approvals will normally be accorded within 30 days provided the construction conforms to the specifications</td> </tr> </table> <p align="center" class="paraheader"><a id="5"></a>IV. Department of Non-Banking Supervision</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="10%" align="center" valign="top">Sr. No</th> <th width="67%" align="center" valign="top">Description of Regulatory Approval</th> <th width="23%" align="center" valign="top">Time required</th> </tr> <tr> <td colspan="3" valign="top" class="head">Non-Banking Finance Companies(NBFCs)</td> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top">Change of name</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">2.</td> <td valign="top">Shifting of company’s Registered Office and request for issue of fresh Certificate of Registration</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">3</td> <td valign="top">Issue of NOC for setting up of subsidiary/ Wholly Owned Subsidiary overseas</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">4</td> <td valign="top">Approval for exemption from the exposure norms in cases where public funds are not accepted</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">5</td> <td valign="top">Permission to invest in insurance companies</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">6</td> <td valign="top">Permission to convert NBFC from Category A (Accepting Deposits) to Category B (Non-Deposit Accepting)</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">7</td> <td valign="top">Opening of branches (> 1000 in number) by NBFCs primarily into lending against gold jewellery</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">8.</td> <td valign="top">Opening of branches by NBFCs-Deposit taking</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">9.</td> <td valign="top">Issue of co-branded credit cards and pre-paid payment instruments</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">10.</td> <td valign="top">Distribution of mutual fund products</td> <td align="center" valign="top">30 days</td> </tr> </table> <p align="center" class="paraheader"><a id="6"></a>V. Department of Payment and Settlement Systems</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr> <th width="7%" align="center" valign="top">Sr. No.</th> <th width="72%" align="center" valign="top">Description of Regulatory Approval</th> <th width="21%" align="center" valign="top">Time required#</th> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top" align="justify">a) In principle Authorisation<br> <br> b) Grant of Certificate of Authorisation (CoA) to commence a payments system under provisions of PSS Act, 2007<br> <br> c) Approval for commencement of eligible activity under guidelines on regulation of Payment Aggregator- Cross Border (PA- Cross Border) </td> <td align="center" valign="top">90 days! <br> <br> 30 days@<br> <br> <br> 60 days</td> </tr> <tr> <td valign="top" align="center">2.</td> <td valign="top" align="justify">Voluntary surrender of CoA by entities that have not commenced business</td> <td valign="top" align="center">30 days</td> </tr> <tr> <td align="center" valign="top">3.</td> <td valign="top" align="justify">Approval for change in shareholding of non-banks PSPs in cases involving takeover / acquisition or sale to entities not authorised to undertake similar activity</td> <td align="center" valign="top">45 days $</td> </tr> <tr> <td valign="top" align="center">4.</td> <td valign="top" align="justify">Renewal of CoA</td> <td valign="top" align="center">Before expiry of current CoA^</td> </tr> <tr> <td colspan="3" valign="top" align="justify"># Timelines for intimating Bank’s decision, favourable or otherwise, in cases covered below shall commence after receipt of complete information.<br> <br> ! The timelines for issue of in-principle authorisation shall commence after receipt of application and receipt of additional inputs, if any, sought by the Bank.<br> <br> @ The timelines shall commence after review of system audit report tendered by the applicant on Bank’s advice and receipt of additional inputs, if any, as sought by the Bank.<br> <br> $ Not applicable in case of overseas Principal in MTSS<br> <br> ^ Subject to the entity sharing complete information with the Bank at least three calendar months prior to expiry of current CoA.</td> </tr> </table> <p align="center" class="paraheader"><a id="7"></a>VI. Foreign Exchange Department</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr> <th width="5%" align="center" valign="top"><strong>Sr. No.</strong></th> <th width="65%" align="center" valign="top"><strong>Description of Regulatory Approval</strong></th> <th width="30%" align="center" valign="top"><strong>Time required</strong></th> </tr> <tr> <td rowspan="4" align="center" valign="top">1.</td> <td valign="top">a) Permission for establishment of new Liaison Office (LO)/ Branch Office (BO) in India under Approval Route</td> <td valign="top">10 days on receipt of Government approval</td> </tr> <tr> <td valign="top">b) Approval for establishing additional LO/BO in India.</td> <td valign="top">10 days on receipt of Government approval</td> </tr> <tr> <td valign="top">c) Permission for opening LO/BO/ Project Office (PO) by entities from China, Hong Kong, Macau, Pakistan, Bangladesh, Afghanistan, Sri Lanka and Iran</td> <td valign="top">10 days on receipt of Government approval</td> </tr> <tr> <td valign="top">d) Permission for establishing PO in India which require GOI approval</td> <td valign="top">10 days on receipt of Government approval</td> </tr> <tr> <td align="center" valign="top">2.</td> <td valign="top">Permission to open foreign currency account in India</td> <td valign="top">60 days</td> </tr> <tr> <td align="center" valign="top">3.</td> <td valign="top">To open foreign currency account outside India</td> <td valign="top">60 days</td> </tr> <tr> <td align="center" valign="top">4.</td> <td valign="top">To open Non Resident Ordinary(NRO) account in consultation with the MoF, GoI</td> <td valign="top">10 days on receipt of Government approval</td> </tr> <tr> <td align="center" valign="top">5.</td> <td valign="top">To receive salary outside India in foreign currency account</td> <td valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">6.</td> <td valign="top">For transfer/acquisition of immovable property not covered under general permission in terms of Foreign Exchange Management Act, 1999 or the rules/ regulations made thereunder</td> <td valign="top">10 days on receipt of Government approval</td> </tr> <tr> <td align="center" valign="top">7.</td> <td valign="top">Permission for acquisition/transfer of immovable property not covered under general permission in terms of Foreign Exchange Management Act, 1999 or the rules /regulations made there under.</td> <td valign="top">60 days from the date of receipt of complete documents/information in case no Government approval is required for such acquisition/transfer of immovable property</td> </tr> <tr> <td align="center" valign="top">8.</td> <td valign="top">Approvals given for proposals regarding miscellaneous external payments of permissible Current and Capital Account transactions</td> <td valign="top">30 working days</td> </tr> <tr> <td align="center" valign="top">9.</td> <td valign="top">Issue and Renewal of fresh AD Category Cat-I licence</td> <td valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">10.</td> <td valign="top">Issue of fresh AD Cat-II licence</td> <td valign="top">90 days</td> </tr> <tr> <td align="center" valign="top">11.</td> <td valign="top">Issue and Renewal of fresh AD Cat-III licence</td> <td valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">12.</td> <td valign="top">Issue of fresh licence to conduct Money Transfer Service Scheme (MTSS) business</td> <td valign="top">45 days</td> </tr> <tr> <td align="center" valign="top">13.</td> <td valign="top">Issue of first permission to undertake Rupee Drawing Arrangement (RDA) scheme</td> <td valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">14.</td> <td valign="top">Approvals to take Insurance policies from insurance companies in foreign countries.</td> <td valign="top">7 days</td> </tr> <tr> <td align="center" valign="top">15.</td> <td valign="top">Issue/ Renewal of Money Changer's licence</td> <td valign="top">40 working days</td> </tr> </table> <p align="center" class="paraheader"><a id="9"></a>VII. Financial Markets Regulation Department</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="3%" align="center" valign="top">Sr. No.</th> <th width="60%" align="center" valign="top">Description of Regulatory Approval</th> <th width="17%" align="center" valign="top">Time required</th> </tr> <tr> <td align="center" valign="top">1</td> <td valign="top">One time Permission to Authorised Dealer category–I bank for running FCY-INR options book</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">2</td> <td valign="top">Authorisation to Currency Futures Exchanges/ Clearing Corporations u/s 10(1) of FEMA 1999</td> <td align="center" valign="top">30 days</td> </tr> <tr> <td align="center" valign="top">3</td> <td valign="top">NDS-OM (grant of new membership, termination of membership and change of name of existing members)</td> <td align="center" valign="top">7 days*</td> </tr> <tr> <td align="center" valign="top">4</td> <td valign="top">NDS-CALL (grant of new membership, termination of membership and change of name of existing members)</td> <td align="center" valign="top">7 days*</td> </tr> <tr> <td colspan="3" valign="top">*Timeline indicates clear working days, excluding date of receipt of application complete in all respects.</td> </tr> </table> <p align="center" class="paraheader"><a id="10"></a>VIII. Internal Debt Management Department</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr> <th width="3%" align="center" valign="top"><span class="head">Sr. No.</span></th> <th width="60%" align="center" valign="top"><span class="head">Description of Regulatory Approval</span></th> <th width="17%" align="center" valign="top"><span class="head">Time required</span></th> </tr> <tr> <td colspan="3" valign="top"><span class="head">Bank Primary Dealers (carrying PD business departmentally)</span></td> </tr> <tr> <td rowspan="2" align="center" valign="top">1.</td> <td valign="top">1. License for Primary Dealer Business</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td valign="top">2. Termination of PD license</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td colspan="3" valign="top" class="head">Standalone Primary Dealers</td> </tr> <tr> <td rowspan="5" align="center" valign="top">2.</td> <td valign="top">1. License for Primary Dealer Business </td> <td align="center" valign="top">90 days</td> </tr> <tr> <td valign="top">2. Termination of PD license</td> <td align="center" valign="top">90 days</td> </tr> <tr> <td valign="top">3. For undertaking Portfolio Management Services</td> <td align="center" valign="top">60 days</td> </tr> <tr> <td valign="top">4. To act as market makers in the Credit Default Swaps (CDS)</td> <td align="center" valign="top">45 days</td> </tr> <tr> <td valign="top">5. Diversification of activities by PD </td> <td align="center" valign="top">45 days</td> </tr> </table> <p align="center" class="paraheader"><a id="8"></a>IX. Mumbai Regional Office, Banking Department</p> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" class="tablebg"> <tr class="head"> <th width="3%" align="center" valign="top">Sr. No.</th> <th width="60%" align="center" valign="top">Description of Regulatory Approval</th> <th width="17%" align="center" valign="top">Time required</th> </tr> <tr> <td align="center" valign="top">1.</td> <td valign="top">Intra-day Limit (IDL) setting for RTGS members</td> <td align="center" valign="top">7 days*</td> </tr> <tr> <td colspan="3" valign="top">*The timeline indicates clear working days, excluding date of receipt of application.</td> </tr> </table> <p class="head">Foot Note:</p> <ol> <li> <p>All the above estimated timelines for regulatory approvals of various departments (<span class="head">I to IX</span>) are anticipated to be met by in most cases, but a few may exceed these timelines.</p> </li> <li> <p>If departments are likely to exceed the timeline, they will revert to the applicant.</p> </li> <li> <p>In case an applicant does not get a response within the indicated timeline, they can approach the head of the concerned department. The department head will respond with the status of the application, the reason for delay, request for additional information, if any, as well as likely time for disposal of the application.</p> </li> <li> <p>In some situations, a change in procedure or in the environment will change the estimated time for action. In such cases, the timeline for approval will be modified appropriately.</p> </li> <li> <p>The timelines given in column 3 <span class="head">for all above Departments (I to IX)</span> are subject to receipt of complete information/ documents from the banks/ institutions concerned as well as receipt of regulatory/ supervisory inputs/ due diligence reports/ approvals from other regulators and the concerned Government Agencies/ Departments.</p> </li> <li> <p>The timeline mentioned against the VI. Foreign Exchange Department are not applicable for cases referred to Empowered Committee for approval.</p> </li> </ol> <br /> </div> </div> </div> <div class="clearfix"> </div> <div> <a href="#top" class="scrollToTop" id="backToTop">Top</a> <footer class="footer"> <div class="footer"> <div class="container_12"> <!--<div class="grid_9" style="width: 833px !important; "> <h4><span class="blue">More</span> Links :</h4> <div class="grid_2 alpha" style="width:150px !important"> <ul class="footerlist"> <li><a target="_blank" href="https://www.rbi.org.in/FinancialEducation/">Financial Education</a></li>https://www.rbi.org.in/commonperson/English/Scripts/Home.aspx <li><a target="_blank" href="https://ncfe.org.in/e-lms">E-LMS</a></li> <li><a target="_blank" href="https://rbikehtahai.rbi.org.in/">RBI Kehta Hai</a></li> <li><a href="/Scripts/FAQDisplay.aspx">FAQs</a></li> <li><a href="/Scripts/IFSCMICRDetails.aspx">IFSC/MICR Codes</a></li> </ul> </div> <div class="grid_2 omega" style="width:150px !important;"> <ul class="footerlist"> <li><a href="/Scripts/BS_ViewTenders.aspx">Tenders</a></li> <li><a target="_blank" href="https://opportunities.rbi.org.in/scripts/index.aspx">Opportunities<font>@</font>RBI</a></li> <li><a href="/Scripts/HolidayMatrixDisplay.aspx">Bank Holidays</a></li> <li><a href="/Scripts/BS_ViewForms.aspx">Forms</a></li> <li><a href="https://www.rbi.org.in/scripts/bs_viewcontent.aspx?Id=3894">COVID-19 Measures</a></li> </ul> </div> <div class="grid_2 alpha omega" style="width:254px !important;"> <ul class="footerlist"> <li><a href="/Scripts/EventsDisplay.aspx">Events</a></li> <li><a href="/Scripts/rbi_clarification.aspx">RBI Clarifications</a></li> <li><a href="/Scripts/Righttoinfoact.aspx">Right to Information Act</a></li> <li><a href="/Scripts/OtherLinks.aspx">Important Websites</a></li> <li><a href="https://rbidocs.rbi.org.in/rdocs/content/pdfs/Utkarsh30122022.pdf">RBI's Core Purpose, Values and Vision</a></li> </ul> </div> <div class="grid_2" style="width:215px !important;"> <ul class="footerlist"> <li><a href="/Scripts/CitiChart.aspx">Citizens' Charter</a></li> <li><a href="/Scripts/Timlines.aspx">Timelines for Regulatory Approvals</a></li> <li><a href="/Scripts/Complaints.aspx">Complaints</a></li> <li><a href="https://shabdavali.rbi.org.in/">Banking Glossary</a></li> <li><a href="/Scripts/helpdesk.aspx">Contact Us</a></li> </ul> </div> </div>--> <div class="grid_9" style="width: 833px !important; "> <h4><span class="blue">More</span> Links :</h4> <div class="grid_2 alpha" style="width:170px !important"> <ul class="footerlist"> <li><a href="/Scripts/HolidayMatrixDisplay.aspx">Bank Holidays</a></li> <li><a href="https://shabdavali.rbi.org.in/">Banking Glossary</a></li> <li><a href="/Scripts/CitiChart.aspx">Citizens' Charter</a></li> <li><a href="/Scripts/Complaints.aspx">Complaints</a></li> <li><a href="/Scripts/helpdesk.aspx">Contact Us</a></li> </ul> </div> <div class="grid_2 omega" style="width:180px !important;"> <ul class="footerlist"> <li><a href="https://www.rbi.org.in/scripts/bs_viewcontent.aspx?Id=3894">COVID-19 Measures</a></li> <li><a target="_blank" href="https://ncfe.org.in/e-lms">E-LMS</a></li> <li><a href="/Scripts/EventsDisplay.aspx">Events</a></li> <li><a href="/Scripts/FAQDisplay.aspx">FAQs</a></li> <li><a target="_blank" href="https://www.rbi.org.in/FinancialEducation/">Financial Education</a></li><!--https://www.rbi.org.in/commonperson/English/Scripts/Home.aspx--> </ul> </div> <div class="grid_2 alpha omega" style="width:180px !important;"> <ul class="footerlist"> <li><a href="/Scripts/BS_ViewForms.aspx">Forms</a></li> <li><a href="/Scripts/IFSCMICRDetails.aspx">IFSC/MICR Codes</a></li> <li><a href="/Scripts/OtherLinks.aspx">Important Websites</a></li> <li><a target="_blank" href="https://opportunities.rbi.org.in/scripts/index.aspx">Opportunities<font>@</font>RBI</a></li> <li><a href="/Scripts/rbi_clarification.aspx">RBI Clarifications</a></li> </ul> </div> <div class="grid_2" style="width:254px !important;"> <ul class="footerlist"> <li><a target="_blank" href="https://rbikehtahai.rbi.org.in/">RBI Kehta Hai</a></li> <li><a href="https://rbidocs.rbi.org.in/rdocs/content/pdfs/Utkarsh30122022.pdf">RBI's Core Purpose, Values and Vision</a></li> <li><a href="/Scripts/Righttoinfoact.aspx">Right to Information Act</a></li> <li><a href="/Scripts/BS_ViewTenders.aspx">Tenders</a></li> <li><a href="/Scripts/Timlines.aspx">Timelines for Regulatory Approvals</a></li> </ul> </div> </div> <div class="grid_3" style="width:197px !important"> <h4><span class="blue">Follow</span> RBI </h4> <ul class="footerlist"> <!--<li><a href="/Scripts/rss.aspx"><img src="/images/rss-icon.png" alt="Subscribe to RSS" class="rss"/>RSS</a></li>--> <li style="float: left;background: url(/images/footer_list_arrow.gif) left 8px no-repeat;"><a href="/Scripts/rss.aspx"><img src="/images/rss-icon.png" alt="Subscribe to RSS" class="rss">RSS</a></li> <!--<li><a href="https://twitter.com/RBI" target="_blank" class="twitter"><img src="/images/Twitter_New.png" width="14px" height="14px" alt="Follow RBI on Twitter" class="videos" />Twitter</a></li>--> <li> <a href="https://twitter.com/RBI" target="_blank" class="twitter"> <img src="/images/Twitter_New.png" width="14px" height="14px" alt="Follow RBI on Twitter" class="videos" style="padding-left: 18%;">Twitter </a> </li> <!--<li><a href="https://www.youtube.com/channel/UCIfCOl43tunZVNYafeC4RQA" class="videos" target="_blank"><img src="/images/videos-icon.png" alt="Check RBI Videos" class="videos"/>Videos</a></li>--> <li style="float: left;"><a href="https://www.youtube.com/channel/UCIfCOl43tunZVNYafeC4RQA" class="videos" target="_blank"><img src="/images/youtube.png" alt="Check RBI Videos" class="videos">YouTube</a></li> <li> <a href="https://instagram.com/reservebankofindia" class="videos" target="_blank"> <img src="/images/Instagram.jpg" width="14px" height="14px" alt="Check Instagram" class="videos" style="padding-left: 5%;">Instagram </a> </li> <li style="float: left;"><a href="https://www.facebook.com/RBIsays" class="videos" target="_blank"><img src="/images/Facebook.jpg" width="14px" height="14px" alt="Check Facebook" class="videos">Facebook</a></li> <li> <a href="https://www.linkedin.com/company/reservebankofindia" class="videos" target="_blank"> <img src="/images/LinkedinIcon1.png" alt="Check linkedin" class="" style="padding-left: 4%;width: 17px;background: bottom no-repeat;display: block;float: left;margin: 2px 3px 0 1px;">LinkedIn </a> </li> <li> Download Mobile App<br> <a href="https://play.google.com/store/apps/details?id=com.reservebankofindia.app" target="_blank"><img src="/images/Android.png" alt="Android App" class="rss" style="width:17px" >Play Store</a><br> <a href="https://apps.apple.com/us/app/reserve-bank-of-india/id1154394549?ls=1" target="_blank"><img src="/images/IOS.png" alt="Apple App" class="rss" style="width:18px;height:17px">App Store</a> </li> </ul> </div> <div class="clearfix"></div> </div> <div class="copyright"> <div class="container_12"> <div class="grid_6 pull_left" >© Reserve Bank of India. All Rights Reserved.</div> <div class="grid_5 pull_right" ><a href="/Scripts/sitemap.aspx">Sitemap</a> | <a href="/Scripts/Disclaimer.aspx">Disclaimer</a></div> <div class="clearfix"></div> </div> </div> <!--Welcome note--> <div id="boxesWN"> <div id="dialogWN" class="window" style="top:100px;"> <div> <img width="60" height="60" src="/images/Rbinote.jpeg" alt="Rbi note" /> </div> <table class="WelcomeNote" > <tr> <td style="float:right;"> April 14, 2015 </td> </tr> <tr> <td > Dear All </td> </tr> <tr> <td > Welcome to the refurbished site of the Reserve Bank of India. </td> </tr> <tr> <td > The two most important features of the site are: One, in addition to the default site, the refurbished site also has all the information bifurcated functionwise; two, a much improved search – well, at least we think so but you be the judge. </td> </tr> <tr> <td> With this makeover, we also take a small step into social media. We will now use Twitter (albeit one way) to send out alerts on the announcements we make and YouTube to place in public domain our press conferences, interviews of our top management, events, such as, town halls and of course, some films aimed at consumer literacy. </td> </tr> <tr> <td> The site can be accessed through most browsers and devices; it also meets accessibility standards. </td> </tr> <tr> <td> Please save the url of the refurbished site in your favourites as we will give up the existing site shortly and register or re-register yourselves for receiving RSS feeds for uninterrupted alerts from the Reserve Bank. </td> </tr> <tr> <td> Do feel free to give us your feedback by clicking on the feedback button on the right hand corner of the refurbished site. </td> </tr> <tr> <td> Thank you for your continued support.<br /><br /> </td> </tr> <tr> <td> <strong> Department of Communication <br /> Reserve Bank of India</strong> </td> </tr> <tr><td id="popupfootWN"><a href="#" class="close agree" style="float:right" >Next</a></td></tr> </table> <!-- <div id="popupfootWN"> <a href="#" class="close agree" style="float:right" >Next</a> </div>--><!--<img src="../images/button_close.gif" alt="Close" class="close agree" />--> </div> <div id="maskWN" style="width:100% !important"></div> <!--<div id="feedbackbtn"><a href="#"><div align="center" class="feedbacktext">Feedback</div></a></div>--> </div> </div> </footer> <!--<script type="text/javascript" src="/js/URLchange.js"></script>--> <!-- For live comment out below line.--> <script src="/js/ReplaceURL.js" type="text/javascript"></script> <script src="/js/jquery.cookie.js" type="text/javascript"></script> <script type="text/javascript" language="javascript"> //this is for floating TOP link $(document).ready(function () { var offset = 230; var duration = 500; jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > offset) { jQuery('.scrollToTop').fadeIn(duration); // $('#backToTop').css('right', (diffWidth / 2) - 6); } else { jQuery('.scrollToTop').fadeOut(duration); // $('#backToTop').css('right', (diffWidth / 2) - 6); } }); // $('a[href*=#]:not([href=#])').click(function () { // if (location.pathname.replace(/^\//, '') == window.location.pathname.replace(/^\//, '') && location.hostname == window.location.hostname) { // var target = $(this.hash); // target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); // if (target.length) { // $('html,body').animate({ // scrollTop: target.offset().top // }, 800); // return false; // } // } // }); $('.scrollToTop').click(function () { $('html, body').animate({ scrollTop: 0 }, 800); return false; }); }); //Below code is for floating left panel and floating tree structure //first if condition is for functionwise pages and 2nd one for rest all $(window).scroll(function () { if ($('div.banner2').length) { if ($(window).scrollTop() >= 265) { $('#menubar').css("position", "fixed"); $('#menubar').css("width", "240px"); $('#menubar').css("margin-top", "-281px"); $('.content_area').css("margin-left", "252px"); $('.sidebar_nav').css("position", "fixed"); $('.sidebar_nav').css("margin-top", "-200px"); $('.sidebar_nav').css("width", "236px"); $('#DateSettree_lbltree').css('position', 'fixed'); $('#DateSettree_lbltree').css('margin-top', '-281px'); } else { $('#menubar').css("position", ""); $('#menubar').css("width", ""); $('#menubar').css("margin-top", ""); $('.content_area').css("margin-left", ""); $('.sidebar_nav').css("position", ""); $('.sidebar_nav').css("margin-top", ""); $('.sidebar_nav').css("width", ""); $('#DateSettree_lbltree').css('position', ''); $('#DateSettree_lbltree').css('margin-top', ''); } } else if ($(window).scrollTop() >= 185) { $('#menubar').css("position", "fixed"); $('#menubar').css("width", "240px"); $('#menubar').css("margin-top", "-200px"); $('.content_area').css("margin-left", "252px"); $('.sidebar_nav').css("position", "fixed"); $('.sidebar_nav').css("margin-top", "-200px"); $('.sidebar_nav').css("width", "236px"); $('#DateSettree_lbltree').css('position', 'fixed'); $('#DateSettree_lbltree').css('margin-top', '-200px'); } else { $('#menubar').css("position", ""); $('#menubar').css("width", ""); $('#menubar').css("margin-top", ""); $('.content_area').css("margin-left", ""); $('.sidebar_nav').css("position", ""); $('.sidebar_nav').css("margin-top", ""); $('.sidebar_nav').css("width", ""); $('#DateSettree_lbltree').css('position', ''); $('#DateSettree_lbltree').css('margin-top', ''); } // if ($(window).scrollTop() >= 235) { // $('#DateSettree_lbltree').css('height', '183px'); // $('#DateSettree_lbltree').css('overflow-y', 'scroll'); // $('#DateSettree_lbltree').css('width', '100px'); // } // else { // $('#DateSettree_lbltree').css('height', ''); // $('#DateSettree_lbltree').css('overflow-y', ''); // $('#DateSettree_lbltree').css('width', ''); // } }); // $(window).unload(function () { // $.cookies.del('feedback_Cookie'); // }); $(document).ready(function () { $('.window .close').click(function (e) { //Cancel the link behavior e.preventDefault(); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('#maskWN').hide(); $('.window').hide(); var scroll = $(window).scrollTop(); $("html").scrollTop(scroll); }); $('#maskWN').click(function () { $(this).hide(); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('.window').hide(); }); // if ($.cookie('feedback_Cookie') == null) { // var id = '#dialog'; // //Get the screen height and width // var maskHeight = $(document).height(); // var maskWidth = $(window).width(); // // //Set heigth and width to mask to fill up the whole screen // $('#mask').css({ 'width': '100%', 'height': '100%','position':'fixed' }); // //transition effect // $('#mask').fadeIn(500); // $('#mask').fadeTo("slow", 0.9); // //Get the window height and width // var winH = $(window).height(); // var winW = $(window).width(); // //Set the popup window to center // $(id).css('top', winH / 2 - $(id).height() / 2); // $(id).css('left', winW / 2 - $(id).width() / 2); // //transition effect // $(id).fadeIn(2000); // } // $('blockquote p').css('margin','auto'); // $('blockquote blockquote blockquote p').contents().contents().unwrap(); // $('blockquote blockquote blockquote').contents().unwrap(); // $('blockquote blockquote').contents().unwrap(); // $('blockquote').contents().unwrap(); //if close button is clicked $('.window .close').click(function (e) { //Cancel the link behavior e.preventDefault(); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('#mask').hide(); $('.window').hide(); var scroll = $(window).scrollTop(); $("html").scrollTop(scroll); }); //if mask is clicked $('#mask').click(function () { $(this).hide(); $('.window').hide(); }); $('#feedbackbtn').click(function () { var id = '#dialog'; //Get the screen height and width var maskHeight = $(document).height(); var maskWidth = $(window).width(); //Set heigth and width to mask to fill up the whole screen //$('#mask').css({ 'width': maskWidth, 'height': maskHeight }); $('#mask').css({ 'width': '100%', 'height': '100%', 'position': 'fixed' }); //transition effect $('#mask').fadeIn(500); $('#mask').fadeTo("slow", 0.9); //Get the window height and width var winH = $(window).height(); var winW = $(window).width(); //Set the popup window to center $(id).css('top', winH / 2 - $(id).height() / 2); $(id).css('left', winW / 2 - $(id).width() / 2); //transition effect $(id).fadeIn(2000); }); $('.submit').click(function () { var Name = $("[id*=txtFeedbackName]").val(); var Email = $("[id*=txtFeedbackEmail]").val(); var Comments = $("[id*=txtFeedbackComments]").val(); if (Name == "") { alert("Please enter your name"); $("[id*=txtFeedbackName]").focus(); return false; } else if (Email == "") { alert("Please enter your email"); $("[id*=txtFeedbackEmail]").focus(); return false; } else if (Email != "" && !ValidateEmail(Email)) { alert("Please enter a valid email address"); $("[id*=txtFeedbackEmail]").focus(); return false; } else if (Comments == "") { alert("Please enter some comments"); $("[id*=txtFeedbackComments]").focus(); return false; } else { $('[id*=Button1]').attr('disabled', 'disabled'); var param = { Name: Name, EmailID: Email, Comments: Comments }; $.ajax({ type: "POST", url: "../Home.aspx/SaveFeedback", data: JSON.stringify(param), contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { if (response.d == "0") { alert("Thank you for your feedback"); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('#mask').hide(); $('.window').hide(); $('[id*=Button1]').removeAttr('disabled'); $("[id*=txtFeedbackName]").val(""); $("[id*=txtFeedbackEmail]").val(""); $("[id*=txtFeedbackComments]").val(""); } else { alert("Please try again"); $('[id*=Button1]').removeAttr('disabled'); } } }); } }); function ValidateEmail(email) { var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; return expr.test(email); }; // $('#divArchiveMain').click(function () { // // if ($(window).scrollTop() >= 235) { // $('#DateSettree_lbltree').css('height', '181px'); // $('#DateSettree_lbltree').css('overflow-y', 'scroll'); // $('#DateSettree_lbltree').css('width', '100px'); // } // else { // $('#DateSettree_lbltree').css('height', ''); // $('#DateSettree_lbltree').css('overflow-y', ''); // $('#DateSettree_lbltree').css('width', ''); // } // }); $('a.style1').each(function () { var $this = $(this); var aHref = $this.attr('class'); $this.attr('class', aHref.replace('style1', 'links')); }); }); </script> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-61369961-1', 'auto'); ga('send', 'pageview'); </script> </div> </form> </body> </html> <script type="text/javascript" src="/js/plugins.js"></script> <script type="text/javascript" src="/js/script.js"></script>