ÿþ<html> <head> <title>TBC India</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <STYLE> A:link { TEXT-DECORATION: none } A:visited { TEXT-DECORATION: none } A:active { TEXT-DECORATION: none } A:hover { COLOR: #cc0066; TEXT-DECORATION: underline } #pup { Z-INDEX: 100; VISIBILITY: hidden; WIDTH: 100px; POSITION: absolute } </STYLE> <script language="Javascript"> <!-- function assign() { if(window.document.frm_src.SearchString.value!="") { return true; } else { window.alert("Please enter a string to be searched"); return false; window.document.frm_src.SearchString.focus(); } } function MM_preloadImages() { //v3.0 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} } function toggleBox(szDivID, iState) // 1 visible, 0 hidden { if(document.layers) //NN4+ { document.layers[szDivID].visibility = iState ? "show" : "hide"; } else if(document.getElementById) //gecko(NN6) + IE 5+ { var obj = document.getElementById(szDivID); obj.style.visibility = iState ? "visible" : "hidden"; } else if(document.all) // IE 4 { document.all[szDivID].style.visibility = iState ? "visible" : "hidden"; } } function MM_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc; i++) x.src=x.oSrc; } function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } function MM_swapImage() { //v3.0 var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} } function ShowHide(n) { if(n==1) document.getElementById("Menu1").style.display = ""; if(n==2) document.getElementById("Menu11").style.display = ""; } function hideAll() { document.getElementById("Menu1").style.display = "none"; document.getElementById("Menu11").style.display = "none"; } function hideTime() { theTimeout = setTimeout("hideAll()", "2500"); } //--> </SCRIPT> <Script language="VBScript"> '***********************Old Logic starts dim arr(),arr1() dim nodigit,nodigit1 'New Logic for Calculation '' Manish Ranjan 22 Aug 2003 Dim dateLastQtrDate ' Last Qtr Date Dim dateCurrent Dim intNumberOfDay ' Number of days = dateLastQtrDate - today's date Dim intDaysofQtr ' exact Number of days in a Qtr. Dim intCumPatientsTreatedTillEndOfLastQtr 'Cumulative patients treated till end of last quarter Dim intPatientsTreatedLastQtr 'Patients treated in last quarter Dim intPatientsTreatedPerDay 'Patients treated per day Dim intCumPatientsTreatedTillDate 'Cumulative patients treated till date Dim intCumLivesavedTillDate 'Cumulative lives saved till date Dim strPatientTreated Dim strLiveSaved strPatientTreated = "" strLiveSaved="" '*********************************************** 'following variables are changiable in case any update comes. '*********************************************** dateLastQtrDate = "03/31/2010" '"12/31/2009" '"06/30/2009" intCumPatientsTreatedTillEndOfLastQtr = 11418706 '11045051 '10298011 intPatientsTreatedLastQtr = 373655 '356620 '413202 '*********************************************** ' Dont touch any other code since the formula is tested. '*********************************************** dateCurrent = Date strtest = "dateLastQtrDate: " & dateLastQtrDate strtest = strtest & "<BR> dateCurrent: " & dateCurrent strtest = strtest & "<BR> intCumPatientsTreatedTillEndOfLastQtr: " & intCumPatientsTreatedTillEndOfLastQtr strtest = strtest & "<BR> intPatientsTreatedLastQtr: " & intPatientsTreatedLastQtr 'Calculation intNumberOfDay = DateDiff("d",dateLastQtrDate,dateCurrent) nodigit= Len(intCumPatientsTreatedTillEndOfLastQtr)+1 nodigit1= Len(intPatientsTreatedLastQtr)+1 intCumPatientsTreatedTillEndOfLastQtr = int(intCumPatientsTreatedTillEndOfLastQtr) intPatientsTreatedLastQtr = Int(intPatientsTreatedLastQtr) 'Calculate Exact number of days in a Qtr. IF Month(dateLastQtrDate) = 1 OR Month(dateLastQtrDate) = 2 OR Month(dateLastQtrDate) = 3 Then 'First Qtr IF (Year(dateLastQtrDate) Mod 4) = 0 Then intDaysofQtr = 31 + 29 + 31 Else intDaysofQtr = 31 + 28 + 31 End if End if IF Month(dateLastQtrDate) = 4 OR Month(dateLastQtrDate) = 5 OR Month(dateLastQtrDate) = 6 Then 'Second Qtr intDaysofQtr = 30 + 31 + 30 End if IF Month(dateLastQtrDate) = 7 OR Month(dateLastQtrDate) = 8 OR Month(dateLastQtrDate) = 9 Then 'Third Qtr intDaysofQtr = 31 + 31 + 30 End if IF Month(dateLastQtrDate) = 10 OR Month(dateLastQtrDate) = 11 OR Month(dateLastQtrDate) = 12 Then 'Fourth Qtr intDaysofQtr = 31 + 30 + 31 End if intPatientsTreatedPerDay = intPatientsTreatedLastQtr/intDaysofQtr intCumPatientsTreatedTillDate = int(intCumPatientsTreatedTillEndOfLastQtr + (intPatientsTreatedPerDay * intNumberOfDay)) intCumLivesavedTillDate = int((18 * intCumPatientsTreatedTillDate)/100) strtest = strtest & "<BR> intDaysofQtr: " & intDaysofQtr & " >>>>>>>intNumberOfDay" & intNumberOfDay strtest = strtest & "<BR> intPatientsTreatedPerDay: " & intPatientsTreatedPerDay strtest = strtest & "<BR> intCumPatientsTreatedTillDate: " & intCumPatientsTreatedTillDate strtest = strtest & "<BR> intCumLivesavedTillDate:" & intCumLivesavedTillDate 'Populating Array redim arr(nodigit) for i = 0 to nodigit - 1 arr(i) = intCumPatientsTreatedTillDate mod 10 intCumPatientsTreatedTillDate = int(intCumPatientsTreatedTillDate / 10) next redim arr1(nodigit1) for i = 0 to nodigit1 - 1 arr1(i) = intCumLivesavedTillDate mod 10 intCumLivesavedTillDate = int(intCumLivesavedTillDate / 10) next 'Prepare Number String for i = nodigit - 1 to 0 step -1 strPatientTreated = strPatientTreated & "<td><img src=images/cntr-" & arr(i) & ".gif border=0></td>" next for i = nodigit1 - 1 to 0 step -1 strLiveSaved = strLiveSaved & "<td><img src=images/cntr-" & arr1(i) & ".gif border=0></td>" Next </Script> </head> <body bgColor="#ffffff" leftMargin="0" topMargin="0" onload="MM_preloadImages('images/dd.gif','images/pi.gif','images/faq.gif','images/kfc.gif','images/ss.gif','images/irc.gif','images/his.gif','images/dir.gif','images/rs.gif')" marginwidth="0" marginheight="0"> <CENTER> <div id="Menu11" style="HEIGHT:37; LEFT: 534; POSITION: absolute; TOP: 331; Z-INDEX: 100; width:217; display:none" align="left"> <table border="1" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="99%" id="AutoNumber5" height="6" bgcolor="#DDDCDC"> <tr> <td width="100%" height="16"><b> <font face="Verdana" size="1">Poster (14) and its language version</font></b></td> </tr> <tr> <td width="100%" height="1"><b> <font face="Verdana" size="1">Outdoor other material</font></b></td> </tr> </table> </Div> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="775" id="AutoNumber1" height="96"> <tr> <td colspan="5" bgcolor="#972829"></td> </tr> <tr> <td width="15" height="64"> <img src="images/banner_04.gif" alt="" width="15" height="79"></td> <td width="198" height="64"><a href="home.html"> <img src="images/logo.gif" alt="" border="0" width="198" height="79"></a></td> <td width="135" height="64"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="135" id="AutoNumber2" height="79"> <tr> <td width="135" height="54" nowrap valign="bottom" bgcolor="#DDDCDC"> <form name=frm_src method=get action="http://www.google.com/search" onSubmit="return assign();" target="_blank"> <input type="text" name="SearchString" style="height: 20px; width: 100px; font-size: 10px" size="20" maxlength="255" value="" /><input type=image border="0" src="images/go.jpg" alt="Search" id=image1 name=image1 width="22" height="22"> <input TYPE="hidden" NAME="DocAuthorRestriction"> <input TYPE="hidden" NAME="SortBy" value="rank[d]"> <input TYPE="HIDDEN" NAME="ColChoice" value="1"> <input type="hidden" name="Scope" value="\"> <input TYPE="HIDDEN" NAME="RankBase" value=""> <input type="hidden" name="Action" value="Execute"></Form> </td> </tr> <tr> <td width="135" height="25" nowrap> <img src="images/banner_12.gif" width="109" height="25"><img src="images/banner_13.gif" width="26" height="25"></td> </tr> </table> </td> <td width="419" height="64"> <img src="images/band.gif" alt="" border="0" usemap="#MapMap" width="419" height="79"></td> <td width="13" height="64"> <img src="images/banner_09.gif" alt="" width="13" height="79"></td> </tr> <tr> <td width="15" height="34" valign="top"> <img src="images/banner_14.gif" alt="" width="15" height="34"></td> <td colspan="3" nowrap align="left" height="34" valign="bottom"><a href="documents.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image37','','images/dd.gif',1)"> <img src="images/dd_ovr.gif" name="Image37" border="0" width="85" height="34"></a><a href="perfor.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image38','','images/pi.gif',1)"><img src="images/pi_ovr.gif" name="Image38" border="0" width="82" height="34"></a><a href="faq.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image39','','images/faq.gif',1)"><img src="images/faq_ovr.gif" name="Image39" border="0" width="84" height="34"></a><a href="key.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image40','','images/kfc.gif',1)"><img src="images/kfc_ovr.gif" name="Image40" border="0" width="82" height="34"></a><a href="success.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image41','','images/ss.gif',1)"><img src="images/ss_ovr.gif" name="Image41" border="0" width="84" height="34"></a><a href="Dotsplus.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image49','','images/dots_ovr.gif',1)"><img src="images/dots_h.gif" name="Image49" border="0" width="84" height="34"></a><a href="TBHIV.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image45','','images/tbHIV.gif',1)"><img src="images/TBHIV_ovr.gif" name="Image45" border="0" width="84" height="34"></a><a href="PatientCharter.html" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('Image42','','images/irc.gif',1);ShowHide(1);hideTime();"><img src="images/irc_ovr.gif" name="Image42" border="0" width="84" height="34"></a><a href="history.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image43','','images/his.gif',1)"><img src="images/his_ovr.gif" name="Image43" border="0" width="83" height="34"></a></td><td width="13" height="34" valign="top"><img src="images/banner_24.gif" alt="" width="13" height="34"></td></tr></table> <map name="MapMap"> <area shape="rect" coords="0,-1,65,20" href="contact_us.html" alt="Contact Us"> <area shape="rect" coords="66,1,119,20" href="http://mail.rntcp.org/" target="_blank" alt="Web Mail"> <area shape="rect" coords="120,1,219,20" href="help.html" alt="Site Map"> <area shape="rect" coords="218,1,273,20" href="help.html" alt="Site Map"> </map> <div id="Menu1" style="HEIGHT:69; LEFT: 614; POSITION: absolute; TOP: 111; Z-INDEX: 100; width:304;display:none" align="left"> <table border="1" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="98%" id="AutoNumber3" height="48" bgcolor="#56698E"> <tr> <td width="100%" height="14"><b> <font face="Verdana" size="1" color="#FFFFFF"> <a style="text-decoration: none" href="PatientCharter.html"> <font color="#FFFFFF">Patient Charter</font></a></font></b></td> </tr> <tr> <td width="100%" height="14"><b> <font face="Verdana" size="1" color="#FFFFFF"> <a style="text-decoration: none" href="ColourSpecs.html"> <font color="#FFFFFF">TB Logo and its all language version</font></a></font></b></td> </tr> <tr> <td width="100%" height="14"><b> <font face="Verdana" size="1" color="#FFFFFF"> <a href="RNTCP_Creatives.html" style="text-decoration: none" ><!-- onMouseOver="ShowHide(2);hideTime()" >--> <font color="#FFFFFF">RNTCP Print material</font></a></font></b></td> </tr> <tr> <td width="100%" height="15"><b> <font face="Verdana" size="1" color="#FFFFFF"> <a href="IECMaterialForRNTCP.html" style="text-decoration: none" > <font color="#FFFFFF">IEC Material-outdoors-wall painting in 11 languages</font></a></font></b></td> </tr> <!-- <tr> <td width="100%" height="13"><b> <font face="Verdana" size="1" color="#FFFFFF"> <a href="IECRC/" style="text-decoration: none"> <font color="#FFFFFF">IEC web based Resource Center</font></a></font></b></td> </tr> --> </table> </Div> <table id="Table_01" style="BORDER-COLLAPSE: collapse" borderColor="#111111" height="311" cellSpacing="0" cellPadding="0" width="770" border="0"> <tr> <td vAlign="top" width="4" bgColor="#ffffff" height="48" rowSpan="2">&nbsp; </td> <td vAlign="top" align="left" width="6" height="48" rowSpan="2"><IMG height="100%" alt="" src="images/index_33.gif" width="7" align="top"></td> <td vAlign="top" width="164" colSpan="5" height="19"><IMG height="20" src="images/index_34.gif" width="164"></td> <td vAlign="top" width="18" bgColor="#dddcdc" height="311" rowSpan="10">&nbsp;</td> <td vAlign="top" align="center" width="362" bgColor="#dddcdc" colSpan="14" height="19"><b><font face="Verdana" size="1"><A href="ProcurementNotices.html">Procurement Info</A>&nbsp;|&nbsp; <A href="calculation.html" title="Method of Calculation">Calculation</A>&nbsp;|&nbsp; <A href="Dir.html">Directory</A>&nbsp;|&nbsp; <A href="rel_sites.html">Related Sites</A></font> </b> </td> <td width="25" bgColor="#dddcdc" height="344" rowSpan="9">&nbsp;</td> <td vAlign="top" width="164" bgColor="#dddcdc" colSpan="5" height="19"><IMG height="20" alt="" src="images/index_38.gif" width="164"></td> <td vAlign="top" align="left" width="8" height="48" rowSpan="2"><IMG height="50" alt="" src="images/index_39.gif" width="8" align="top"></td> <td width="4" height="292" rowSpan="12"></td> <td width="1" height="19"><IMG height="20" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td vAlign="top" width="10" height="28"><IMG height="30" alt="" src="images/index_41.gif" width="10" align="top"></td> <td vAlign="top" align="center" width="154" bgColor="#dddcdc" colSpan="4" height="28"> <center> <table cellSpacing="0" cellPadding="0" border="0"> <tr> <td> <IMG src="images/l_cnr.gif" border="0" width="15" height="21"></td> <Script language="JavaScript"> document.writeln (strPatientTreated); </Script> <td> <IMG src="images/r_cnr.gif" border="0" width="16" height="21"></td> </tr> </table> </center> </td> <td vAlign="top" width="10" height="28"><IMG height="30" alt="" src="images/index_43.gif" width="10" align="top"></td> <td vAlign="top" width="44" colSpan="2" height="28"><IMG height="30" alt="" src="images/index_44.gif" width="44" align="top"></td> <td width="300" background="images/index_45.gif" colSpan="9" height="28"><font face="Verdana" size="2"><strong><font color="#ff0000">TUBERCULOSIS CONTROL - INDIA</font></strong></font></td> <td width="8" colSpan="2" height="28"><IMG height="30" alt="" src="images/index_46.gif" width="8"></td> <td vAlign="top" width="164" bgColor="#dddcdc" colSpan="5" height="28"> <div align="center"> <center> <table cellSpacing="0" cellPadding="0" border="0"> <tr> <td> <IMG src="images/l_cnr.gif" border="0" width="15" height="21"></td> <Script language="JavaScript"> document.writeln (strLiveSaved); </Script> <td> <IMG src="images/r_cnr.gif" border="0" width="16" height="21"></td> </tr> </table> </center> </div> </td> <td width="1" height="28"><IMG height="30" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="4" height="248" rowSpan="10"></td> <td vAlign="top" width="6" height="36"><IMG height="100%" alt="" src="images/index_49.gif" width="7" align="top"></td> <td vAlign="top" width="151" bgColor="#666666" colSpan="4" height="36"><IMG height="42" src="images/dots.jpg" width="151" align="top"></td> <td vAlign="top" width="13" height="36"><IMG height="100%" alt="" src="images/index_51.gif" width="13" align="top"></td> <td vAlign="top" width="10" height="290" rowSpan="7"><IMG height="100%" alt="" src="images/index_72.gif" width="10" align="top"> </td> <td vAlign="top" align="left" width="143" colSpan="5" height="290" rowSpan="7"><A href="impRNTCP.html"><IMG height="147" alt="" src="images/map_new.gif" width="143" align="top" useMap="#Map" border="0"><br> </A><font face="Verdana" size="1"><A href="impRNTCP.html">Click here</A> to see <font color="#ff9900"> <strong>RNTCP</strong></font> implementation in India</font> <BR><BR> <!--Blank space--> <font face="Verdana" size="1">- <A href="pdfs/Letter_Serodiagnosis.pdf">DDG Letter on Serodiagnostics</A></Font><IMG src="images/image001.gif" border="0" width="28" height="11"> <BR><font face="Verdana" size="1">- <A href="pdfs/WHO_Policy_Serology_2011.pdf">RNTCP Negative Recommendation on Commercially Available Serodiagnostics</A></Font><IMG src="images/image001.gif" border="0" width="28" height="11"> <BR><font face="Verdana" size="1">- <A href="pdfs/Monthly_Receipts_Disposed_RTI_Appl.pdf"><B>RTI</B></A></Font><IMG src="images/image001.gif" border="0" width="28" height="11"> <BR><font face="Verdana" size="1">- <A href="http://nikshay.gov.in" target=_blank><B>NIKSHAY</B></A></Font><IMG src="images/image001.gif" border="0" width="28" height="11"> <BR><font face="Verdana" size="1">- <A href="pdfs/TB Notification Govt Order dated 07 05 2012.pdf" target=_blank><B>TB Notification</B></A></Font><IMG src="images/image001.gif" border="0" width="28" height="11"> </td> <td vAlign="top" align="center" width="201" colSpan="6" height="290" rowSpan="7"> <table style="BORDER-COLLAPSE: collapse" borderColor="#111111" height="280" cellSpacing="0" cellPadding="0" border="0"> <tr> <td vAlign="top" colSpan="2"><font face="Verdana" size="1">In terms of population coverage, India now has the second largest DOTS (Directly Observed Treatment, Short course) programme in the world. However, India's DOTS programme is the fastest expanding programme, and the largest in the world in terms of patients initiated on treatment, placing more than 100,000 patients on treatment every month. This site provides information about tuberculosis and its control in India.</font><BR> <MARQUEE scrollAmount="10" scrollDelay="250" behavior="alternate"> <A onmouseover="toggleBox('showmsg',1);" onmouseout="toggleBox('showmsg',0);" href="#"> <font face="Verdana" color="red" size="1"><b>70% case detection achieved</b></font></A></MARQUEE><br> &nbsp;&nbsp;&nbsp;<A href="pdfs/RNTCP TB India 2011.pdf" target="_blank"><font face="Verdana" color="blue" size="1"><b>RNTCP Annual Report 2011</b></font></A><IMG src="images/image001.gif" border="0" width="28" height="11"></td> </tr> <tr vAlign="middle"> <td vAlign="top" borderColor="#c0c0c0" align="left" width="260" bgColor="#ffffff"> <P><IMG id="IMG1" height="90" src="images/dots.gif" width="90" align="top"><A href="Pdfs/JMM-2006 Report.pdf"></A> </P> </td> </tr> <tr vAlign="middle"> <td vAlign="top" borderColor="#c0c0c0" align="left" width="260" bgColor="#ffffff" colSpan="2">- <a href="pdfs/Strategic%20Vision%20for%20the%20country%202005-2015%20%20Final.pdf" target="_blank"><font face="Verdana" size="1">Strategic Vision doc of the RNTCP</font></a><BR> - <a href="pdfs/Revied Financial Norms.pdf" target="_blank"> <font face="Verdana" size="1"><b>Revised Financial Norms</b></font></a> <IMG src="images/image001.gif" border="0" width="28" height="11"><BR></n> - <a href="pdfs/RNTCP Response DR TB in India - Jan 2012 update.pdf" target="_blank"> <font face="Verdana" size="1"><b>RNTCP response to challenges of Drug resistance TB in India</b></font></a> <IMG src="images/image001.gif" border="0" width="28" height="11"><BR></n> - <a href="pdfs/National PMDT Scale-up Plan - India - 2011-12.pdf" target="_blank"> <font face="Verdana" size="1"><b>National PMDT Scale-up Plan  India 2011-12</b></font></a> <IMG src="images/image001.gif" border="0" width="28" height="11"></td> </tr> </table> </td> <td vAlign="top" width="8" colSpan="2" height="290" rowSpan="7"><IMG height="100%" alt="" src="images/index_55.gif" width="8" align="top"> </td> <td vAlign="top" width="14" height="36"><IMG height="100%" alt="" src="images/index_56.gif" width="14" align="top"></td> <td vAlign="top" align="left" width="150" bgColor="#666666" colSpan="4" height="36"> <IMG src="images/rntcp.jpg" align="top" width="150" height="42"></td> <td vAlign="top" align="left" width="8" height="36"><IMG height="100%" alt="" src="images/index_58.gif" width="8" align="top"></td> <td width="1" height="36"><IMG height="42" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr bgColor="#5c7093"> <td vAlign="top" width="6" height="231" rowSpan="7"><IMG height="100%" alt="" src="images/index_59.gif" width="7" align="top"></td> <td width="10" bgColor="#5c7093" height="248" rowSpan="6"></td> <td vAlign="top" align="center" width="141" bgColor="#5c7093" colSpan="3" height="248" rowSpan="6"> <div align="left"> <table style="BORDER-COLLAPSE: collapse" borderColor="#111111" cellSpacing="0" cellPadding="0" border="0"> <tr> <td vAlign="top" align="center" bgColor="#5c7093"> <p align="left"><font face="Verdana" color="#ffffff" size="1">The WHO-recommended Directly Observed Treatment, Short Course (DOTS) strategy was launched formally as Revised National TB Control programme in India in 1997 after pilot testing from 1993-1996. Since then DOTS has been widely advocated and successfully applied.&nbsp;.... </font> </p> </td> </tr> <tr> <td vAlign="top" align="right"><A class="link" href="dots.html"><font face="Verdana" color="white" size="1">More..</font></A> </td> </tr> <tr> <td vAlign="top" align="left"><A class="link" href="pdfs/Stop TB strategy.pdf"><font face="Verdana" color="#ffffff" size="1">-The Stop TB Strategy</font></A> <BR> <A class="link" href="pdfs/Summary of ISTC.pdf"><font face="Verdana" color="#ffffff" size="1"> -International standards of TB Care</font></A> <BR></td> </tr> </table> </div> </td> <td vAlign="top" width="13" height="248" rowSpan="6"><IMG height="100%" alt="" src="images/index_62.gif" width="13" align="top"></td> <td vAlign="top" width="14" height="248" rowSpan="6"> <p><IMG height="100%" alt="" src="images/index_74.gif" width="14" align="top"></p> </td> <td vAlign="top" align="left" width="150" bgColor="#5c7093" colSpan="4" height="248" rowSpan="6"> <table style="BORDER-COLLAPSE: collapse" borderColor="#111111" cellSpacing="0" cellPadding="0" align="left" border="0"> <tr> <td vAlign="top" align="left" height="107"><font size="2"> <p><font face="Verdana" color="#ffffff" size="1">In India today, two deaths occur every three minutes from tuberculosis (TB). But these deaths can be prevented. With proper care and treatment, TB patients can be cured and the battle against TB can be won ....</font></p> </font> </td> </tr> <tr> <td vAlign="top" align="right"><A class="link" href="RNTCP.html"><font face="Verdana" color="#ffffff" size="1">More...</font></A> </FONT></td> </tr> <tr> <td vAlign="middle" align="center"><IMG style="LEFT: -1px; TOP: 0px" height="110" alt="RNTCP JMM Debriefing 28 Apr 09" src="images/RNTCP_JMM_debrief.jpg" width="150" align="middle" border="0"> </td> </tr> </table> </td> <td vAlign="top" width="8" height="248" rowSpan="6"><IMG height="100%" alt="" src="images/index_75.gif" width="8" align="top"> </td> <td width="1" bgColor="#ffffff" height="90"><IMG height="82" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="1" height="26"><IMG height="23" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="1" height="21"><IMG height="19" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="1" height="51"><IMG height="36" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="1" height="30"><IMG height="28" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="1" height="3"><IMG height="27" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="151" colSpan="4" height="11"><IMG height="11" src="images/index_76.gif" width="151"></td> <td width="13" height="11"><IMG height="11" alt="" src="images/index_77.gif" width="13"></td> <td width="10" height="11"><IMG height="11" alt="" src="images/index_78.gif" width="10"></td> <td width="44" colSpan="2" height="11"><IMG height="11" alt="" src="images/index_79.gif" width="44"></td> <td width="83" colSpan="2" height="11"><IMG height="11" alt="" src="images/index_80.gif" width="83"></td> <td width="16" height="11"><IMG height="11" alt="" src="images/index_81.gif" width="16"></td> <td width="49" colSpan="2" height="11"><IMG height="11" alt="" src="images/index_82.gif" width="49"></td> <td width="18" height="11"><IMG height="11" alt="" src="images/index_83.gif" width="18"></td> <td width="37" height="11"><IMG height="11" alt="" src="images/index_84.gif" width="37"></td> <td width="47" height="11"><IMG height="11" alt="" src="images/index_85.gif" width="47"></td> <td width="50" height="11"><IMG height="11" alt="" src="images/index_86.gif" width="50"></td> <td width="8" colSpan="2" height="11"><IMG height="11" alt="" src="images/index_87.gif" width="8"></td> <td width="25" height="11"><IMG height="11" alt="" src="images/index_88.gif" width="25"></td> <td width="14" height="11"><IMG height="11" alt="" src="images/index_89.gif" width="14"></td> <td width="10" height="11"><IMG height="11" alt="" src="images/index_90.gif" width="10"></td> <td vAlign="top" width="140" colSpan="3" height="11"><IMG height="11" alt="" src="images/index_91.gif" width="100%" align="top"></td> <td width="8" height="11"><IMG height="11" alt="" src="images/index_92.gif" width="8"></td> <td width="1" height="11"><IMG height="11" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td vAlign="top" width="6" height="1"><IMG height="100%" alt="" src="images/index_93.gif" width="7" align="top"></td> <td width="745" bgColor="#dddcdc" colSpan="26" height="1"> <TABLE height="38" width="100%" border="0"> <TR> <TD align="center"> <marquee scrollAmount="10" scrollDelay="250" behavior="alternate"> <A href="pdfs/ctd job.pdf"><font face="Verdana" size="1"><B>Contractual Appointment for A.O.s and Consultant Finance for Central T.B. Division</B></font></A><IMG src="images/image001.gif" border="0" width="28" height="11"></marquee></TD> </TR> </TABLE> </td> <td vAlign="top" width="8" height="1"> <p><IMG height="100%" alt="" src="images/index_96.gif" width="8" align="top"></p> </td> <td width="1" height="1"><IMG height="14" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td vAlign="top" width="6" height="29"><IMG height="34" alt="" src="images/index_97.gif" width="7" align="top"></td> <td vAlign="top" width="10" height="29"><IMG height="34" alt="" src="images/index_98.gif" width="10" align="top"></td> <td vAlign="top" width="716" background="images/index_99.gif" colSpan="24" height="29"> <div align="center"><font face="Verdana" size="1"><IMG height="34" src="images/text.gif" width="315" align="top"> </font> </div> </td> <td vAlign="top" width="19" height="29"><IMG height="34" alt="" src="images/index_101.gif" width="19" align="top"></td> <td vAlign="top" width="8" height="29"><IMG height="34" alt="" src="images/index_102.gif" width="8" align="top"></td> <td width="1" height="29"><IMG height="34" alt="" src="images/spacer.gif" width="1"></td> </tr> <tr> <td width="4" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="12"></td> <td width="6" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="7"></td> <td width="10" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="10"></td> <td width="24" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="23"></td> <td width="47" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="47"></td> <td width="70" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="70"></td> <td width="13" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="13"></td> <td width="18" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="28"></td> <td width="10" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="10"></td> <td width="22" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="22"></td> <td width="22" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="22"></td> <td width="17" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="17"></td> <td width="66" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="66"></td> <td width="16" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="16"></td> <td width="16" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="16"></td> <td width="33" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="33"></td> <td width="18" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="18"></td> <td width="37" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="37"></td> <td width="47" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="47"></td> <td width="50" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="50"></td> <td width="3" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="3"></td> <td width="5" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="5"></td> <td width="25" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="25"></td> <td width="14" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="14"></td> <td width="10" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="10"></td> <td width="61" height="19"><IMG height="1" alt="" src="images/spacer.gif" width="61"></td> <td width="60" height="19">&nbsp;</td> <td width="19" height="19">&nbsp;</td> <td width="8" height="19">&nbsp; </td> <td width="4" height="19">&nbsp;</td> <td width="1" height="19"></td> </tr> </table> <MAP onclick="javascript:location.href='impRNTCP.html'" name="Map"> <AREA onmouseover="toggleBox('jk',1);" onmouseout="toggleBox('jk',0);" shape="POLY" coords="36,28,27,20,28,14,21,11,32,7,40,11,44,14,50,11,56,12,49,17,51,24,44,24" href="home.html#"> <area onmouseover="toggleBox('HP',1);" onmouseout="toggleBox('HP',0);" shape="POLY" coords="42,35,35,28,45,26,50,24,47,29,48,32,41,35" href="#"> <area onmouseover="toggleBox('PN',1);" onmouseout="toggleBox('PN',0);" shape="POLY" coords="36,29,30,30,27,36,32,40,36,37,41,32,38,28" href="#"> <area onmouseover="toggleBox('RJ',1);" onmouseout="toggleBox('RJ',0);" shape="POLY" coords="26,37,20,44,14,48,9,48,10,54,14,59,17,61,23,63,28,67,30,61,35,61,39,61,40,56,45,52,41,48,37,44,32,44,28,38" href="#"> <area onmouseover="toggleBox('HR',1);" onmouseout="toggleBox('HR',0);" shape="POLY" coords="30,41,34,37,41,33,41,40,37,43,32,43" href="#"> <area onmouseover="toggleBox('DL',1);" onmouseout="toggleBox('DL',0);" shape="POLY" coords="43,41,44,44,41,47,39,44,43,40" href="#"> <area onmouseover="toggleBox('UR',1);" onmouseout="toggleBox('UR',0);" shape="POLY" coords="53,42,46,38,42,36,48,32,53,35,56,37" href="#"> <area onmouseover="toggleBox('UP',1);" onmouseout="toggleBox('UP',0);" shape="POLY" coords="44,39,53,44,62,47,68,48,70,54,66,60,63,61,58,59,50,58,46,59,46,55,44,49,41,46" href="#"> <area onmouseover="toggleBox('MP',1);" onmouseout="toggleBox('MP',0);" shape="POLY" coords="38,75,30,71,29,67,32,62,40,62,42,58,45,56,46,61,57,60,65,62,61,65,59,69,53,73,48,73,40,75" href="#"> <area onmouseover="toggleBox('GU',1);" onmouseout="toggleBox('GU',0);" shape="POLY" coords="15,60,11,63,3,64,5,68,10,69,8,72,12,76,16,77,22,72,22,79,28,70,23,64,16,61" href="#"> <area onmouseover="toggleBox('BI',1);" onmouseout="toggleBox('BI',0);" shape="POLY" coords="69,60,77,61,82,59,86,55,83,53,72,50,69,49,71,56,69,61" href="#"> <area onmouseover="toggleBox('JH',1);" onmouseout="toggleBox('JH',0);" shape="POLY" coords="67,63,72,67,72,72,80,70,78,65,83,62,89,57,84,56,75,61,66,61" href="#"> <area onmouseover="toggleBox('WB',1);" onmouseout="toggleBox('WB',0);" shape="POLY" coords="89,46,92,52,87,54,89,55,88,61,92,68,91,71,84,73,80,71,79,65,84,62,88,61,88,54,88,47" href="#"> <area onmouseover="toggleBox('MG',1);" onmouseout="toggleBox('MG',0);" shape="POLY" coords="97,58,98,54,104,54,107,59,99,59" href="#"> <area onmouseover="toggleBox('AS',1);" onmouseout="toggleBox('AS',0);" shape="POLY" coords="92,51,101,51,112,48,120,47,113,52,110,57,107,59,104,62,102,65,106,58,104,55,98,54,96,54,93,55,91,51" href="#"> <area onmouseover="toggleBox('MZ',1);" onmouseout="toggleBox('MZ',0);" shape="POLY" coords="108,63,107,68,109,71,110,68" href="#"> <area onmouseover="toggleBox('AR',1);" onmouseout="toggleBox('AR',0);" shape="POLY" coords="105,49,103,47,109,45,116,40,122,40,126,45,125,48,120,49,118,46,114,48,108,48,103,49" href="#"> <area onmouseover="toggleBox('NG',1);" onmouseout="toggleBox('NG',0);" shape="POLY" coords="116,58,110,55,114,52,118,49,122,48,118,53,115,54,116,59" href="#"> <area onmouseover="toggleBox('MN',1);" onmouseout="toggleBox('MN',0);" shape="POLY" coords="113,59,112,55,107,59,108,64,110,66,113,63,114,56,113,54" href="#"> <area onmouseover="toggleBox('TR',1);" onmouseout="toggleBox('TR',0);" shape="POLY" coords="105,60,101,64,103,68,105,67,105,65,106,59" href="#"> <area onmouseover="toggleBox('CG',1);" onmouseout="toggleBox('CG',0);" shape="POLY" coords="70,69,69,62,65,62,61,66,57,72,55,76,54,83,56,87,59,89,60,88,61,83,63,75,67,72" href="#"> <area onmouseover="toggleBox('OR',1);" onmouseout="toggleBox('OR',0);" shape="POLY" coords="82,77,82,71,80,70,72,71,70,67,66,73,63,77,59,84,61,88,68,83,71,85,80,79" href="#"> <area onmouseover="toggleBox('MH',1);" onmouseout="toggleBox('MH',0);" shape="POLY" coords="27,98,25,86,23,81,26,76,28,73,34,75,46,73,56,72,55,79,56,84,50,84,44,85,38,89,32,92,28,97" href="#"> <area onmouseover="toggleBox('KE',1);" onmouseout="toggleBox('KE',0);" shape="POLY" coords="31,111,37,115,40,120,41,128,40,131,36,123,34,115" href="#"> <area onmouseover="toggleBox('TN',1);" onmouseout="toggleBox('TN',0);" shape="POLY" coords="53,107,47,110,43,114,39,116,40,122,41,130,43,131,46,127,49,122,51,119,50,116,54,108" href="#"> <area onmouseover="toggleBox('KA',1);" onmouseout="toggleBox('KA',0);" shape="POLY" coords="28,99,29,108,32,111,40,118,46,111,47,109,39,106,41,100,43,95,43,91,43,85,29,95" href="#"> <area onmouseover="toggleBox('AP',1);" onmouseout="toggleBox('AP',0);" shape="POLY" coords="53,106,54,99,60,95,68,89,71,86,65,85,60,88,53,85,47,87,43,88,43,95,42,99,39,101,40,104,45,108,50,110,53,111" href="#"> <area onmouseover="toggleBox('AN',1);" onmouseout="toggleBox('AN',0);" shape="POLY" coords="107,106,121,143,116,146,99,112" href="#"> <area onmouseover="toggleBox('SK',1);" onmouseout="toggleBox('SK',0);" shape="POLY" coords="86,46,92,46,93,49,89,50" href="#"> </MAP> <!-- Address Starts--> <DIV id='AN' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>A and Nicobar Islands</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Officer, Directorate of Health Services, Andaman & Nicobar Union Territory</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Port Blair</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>03192-232775<BR>03192-242132</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOAN@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='AP' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Andhra Pradesh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Joint Director (TB) & State TB Officer, Office of the Joint Director (TB) & State TB Officer, Directorate of Medical & Health Services, Sultan Bazaar, Koti</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Hyderabad</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>040-24733374<BR>040-24618921</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOAP@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='AR' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Arunachal Pradesh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>DDHS(TB) cum State TB Officer, Govt. of Arunachal Pradesh, Directorate of Health Services</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Naharlagun</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0360-2244176</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOAR@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='AS' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Assam</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Directorate of Health services, Dispur, Hengrabari</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Guwahati</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0361-2228308</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOAS@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='BI' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Bihar</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>I/C T.B. Division, State Health Society, Bihar, Pariwar Kalyan Bhawan, Sheikpura</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Patna</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0612-3244041</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOBI@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='CH' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chandigarh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chest Clinic and Polyclinic, Sector 22</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chandigarh</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0172-2715458</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOCH@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='CG' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chhattisgarh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Directorate Health Services, Old Nursing Hostel, Near Mantralaya</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Raipur</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0771-2235655</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOCG@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='DN' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Dadra and Nagar Haveli</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chief Medical Officer, 1st Floor, Shri Vinoba Bhave Civil Hospital, UT of Dadara & Nagar Haveli</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Silvassa</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0260-2642061</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STODN@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='DD' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Daman and Diu</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Director cum State TB Officer, Administration of Daman and Diu, Directorate of Medical & Health Services, Primary Health Center</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Moti Daman</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0260-2230847</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STODD@rntcp.org, pddnh@rediffmail.com</FONT></TD></TR></TABLE></DIV> <DIV id='DL' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Delhi</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Office of State Tuberculosis Officer, Delhi Govt. Dispensary Building, Delhi Govt. Employee Colony, Gulabi Bagh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>New Delhi</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>011-23649049<BR>011-23646173</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STODL@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='GA' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Goa</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chief Medical Officer - TB Control Programme, Provedoria Building, 18th June Road</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Panaji</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0832-2224787<BR>0832-2426416</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOGA@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='GU' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Gujarat</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Officer, 2nd Floor, Block No.5, Commissionerate of Health, Medical Services & Medical Education (HS), Dr. Jivraj Mehta Bhavan</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Gandhi Nagar</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>079-23253328<BR>079-23253330</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOGU@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='HR' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Haryana</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Training & Demonstration Centre, Swasthya Bhawan Campus, Sector 6</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Panchkula</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0172-2581147<BR>0172-2586131</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOHR@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='HP' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Himachal Pradesh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Directorate of Health Services, SDA Complex, Kusumpti</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Shimla</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0177-2625782<BR>0177-2620726</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOHP@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='JK' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Jammu and Kashmir</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Officer cum Director Health Services Old Secretariat</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Srinagar</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0194-2452052</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOJKS@rntcp.org, STOJKJ@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='JH' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Jharkhand</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Cell, ITKI TB Sanatorium, P O ITKI</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Ranchi</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>06529-227178/ 79/ 87</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOJH@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='KA' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Karnataka</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Joint Director (TB), Lady Wellingdon State TB Demonstration Centre, (Behind Police Station of Sampangiramanagara), 4th Cross, Sampangiramanagara</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Bangalore</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>080- 22249364</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOKA@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='KE' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Kerala</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Cell, Redcross Road, General Hospital Junction</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Thiruvananthapuram</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0471-2466058</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOKE@rntcp.org, kstcs1@dataone.in</FONT></TD></TR></TABLE></DIV> <DIV id='LK' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Lakshadweep</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Director of Medical and Health Services, Union Territory of Lekshadweep, Kavarathy Island</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Kavarathi</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>04896-262116<BR>04896-262240</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOLK@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='MP' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Madhya Pradesh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Joint Director(TB) and State TB Officer, Directorate Of Health, 4th Floor, Satpuda Bhavan</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Bhopal</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0755-4203140</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOMP@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='MH' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Maharashtra</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Office of Dy. Director of Health Services (TB & BCG), Naidu Hospital Compound, Behind Pune Railway Station, Kenedi Marg, In the premises of State Health Transport Office</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Pune</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>020-26058680</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOMH@rntcp.org, ddtbmaha@vsnl.net</FONT></TD></TR></TABLE></DIV> <DIV id='MN' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Manipur</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>R&D Wing, MEDICAL DIRECTORATE, Lamphelpat</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Imphal</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0385-2414599</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOMN@rntcp.org, imtkl@sancharnet.in</FONT></TD></TR></TABLE></DIV> <DIV id='MG' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Meghalaya</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>TB Hospital Compound, Jhalupara-Mawprem</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Shillong</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0364-2546005</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOMG@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='MZ' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Mizoram</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>TB Section, Directorate of Health Services, Dinthar</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Aizawl</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0389-2314326</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOMZ@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='NG' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Nagaland</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STO, Directorate of Health Services, PR Hill</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Kohima</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0370-2243986</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STONG@rntcp.org, rntcpng@yahoo.co.in</FONT></TD></TR></TABLE></DIV> <DIV id='OR' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Orissa</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Health Directorate, HOD Building</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Bhubaneshwar</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0674-2390395</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOOR@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='PNY' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Pondicherry</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Control Officer, Government Chest Clinic, Ambour Salai</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Pondicherry</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0413-2336262<BR>0413-2226275</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOPD@rntcp.org, cclinic@pondy.pon.nic.in</FONT></TD></TR></TABLE></DIV> <DIV id='PN' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Punjab</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Directorate of Health Services, Room No.-315, 2nd floor, Sector 34-A, Parivar Kalyan Bhavan</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chandigarh</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0172-2624353<BR>0172-2647901</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOPN@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='RJ' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Rajasthan</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Room No.-105, Swasthya Bhavan, C-Scheme, Tilak Marg</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Jaipur</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0141-2229888</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STORJ@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='SK' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Sikkim</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Addl. Director-cum-STO, State TB Cell, Deptt. Of Health Care, Human Services & Family Welfare, Bhanupath</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Gangtok</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>03592-204954</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOSK@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='TN' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Tamil Nadu</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Officer, State Health Society-RNTCP, 1st Floor, Anti-TB Association Building, DMS office, No 359-361, Annasalai</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Chennai</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>044-24346185<BR>044-24336396</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOTN@rntcp.org; statetbofficer@vsnl.net; statetbofficertn@vsnl.net</FONT></TD></TR></TABLE></DIV> <DIV id='TR' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Tripura</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Office of the State TB Control Society, Ground Floor of KBTB Ward, G B Hospital Complex</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Agartala</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0381-2201142</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOTR@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='UP' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Uttar Pradesh</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Joint Director TB, State TB Cell, 1st Floor, Directorate of Medical and Health Services, Swasthya Bhawan</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Lucknow</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0522-2613596</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOUP@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='UR' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Uttaranchal</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>State TB Cell, Deptt. Of Health and Family welfare, Chandarnagar</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Dehradun</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>0135-2622168</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOUR@rntcp.org</FONT></TD></TR></TABLE></DIV> <DIV id='WB' style='Z-INDEX: 99; LEFT: 540; VISIBILITY: hidden; WIDTH: 231; POSITION: absolute; TOP: 190; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc; border: 1px none #000000'><TABLE width='100%' border=0 align='center' cellPadding=0 cellSpacing=0 bgColor=#dddcdc id=AutoNumber1><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>State</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>West Bengal</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Address</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Swastha Bhawan, Sector-V, Salt lake city, GN-29, 'A' Wing, 2nd Floor, Bidhannagare</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>City</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>Kolkata</FONT></TD></TR><TR align='left' valign='Top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Phone</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>033-23574021<BR>033-23576000 extn.20</FONT></TD></TR><TR align='left' valign='top'><TD width='25%'><B><FONT face=Verdana color=#000066 size=1>Email</FONT></B></TD><TD width='75%'><FONT face=Verdana color=#000066 size=1>STOWB@rntcp.org</FONT></TD></TR></TABLE></DIV> <!-- Address ends--> <DIV id="showmsg" style="BORDER-RIGHT: #000000 1px; BORDER-TOP: #000000 1px; Z-INDEX: 99; LEFT: 383px; VISIBILITY: hidden; BORDER-LEFT: #000000 1px; WIDTH: 452px; BORDER-BOTTOM: #000000 1px; POSITION: absolute; TOP: 48px; HEIGHT: 80px; BACKGROUND-COLOR: #dddcdc; layer-background-color: #dddcdc"> <TABLE cellSpacing="0" cellPadding="0" width="100%" align="center" bgColor="#ffff00" border="0"> <TR vAlign="top" align="left"> <TD><FONT face="Verdana" color="red" size="2"><B>RNTCP</B> has consistently achieved treatment success rate of more than 85%, and case detection close to the global target. However, in 2007 RNTCP for the first time has achieved the global target of 70% case detection while maintaining the treatment success rate of more than 85%. </FONT> </TD> </TR> </TABLE> </DIV> </CENTER> </body> </html>