FSecurity.Org • Hack Forum • Warez Forum • Hack Forumu • İnstagram çalma • Hacker forum •  Warez Forumu • Hack sitesi • Warez Scriptler

KucukHacker0088 Shell

Current Path : G:/PleskVhosts/mpcdp.in/cmamp.mpcdp.in/

Windows NT SG2NWVPWEB022 10.0 build 17763 (Windows Server 2016) i586
Upload File :
Current File : G:/PleskVhosts/mpcdp.in/cmamp.mpcdp.in/FormAward_test_TOP.html

<!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"><!-- InstanceBegin template="/Templates/MasterPage.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>City Managers Association Madhya Pradesh - Conservation Plan</title>
<!-- InstanceEndEditable -->
<!-- Load jQuery -->
	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
	
	<!-- Some CSS -->
	<style type="text/css">	
	
		#page {
			width: 480px;
			padding: 20px 40px 20px 40px;
			margin: 40px auto 40px auto;
			border: 1px solid #e1e1e1;
		}
 
 
		#toTop {
			display: block;
			position: fixed;
			top: 50%;
			right: 0;
			padding: 10px;
			border: 2px solid red;
			background: white;
 
		}
	
	</style>
	
	<!-- javascript -->
	<script>
	
		// When the document is loaded...
	    $(document).ready(function()
		{	
 
			// Hide the toTop button when the page loads.
			$("#toTop").css("display", "none");
			
			// This function runs every time the user scrolls the page.
			$(window).scroll(function(){
 
				// Check weather the user has scrolled down (if "scrollTop()"" is more than 0)
				if($(window).scrollTop() > 0){
 
					// If it's more than or equal to 0, show the toTop button.
					console.log("is more");
					$("#toTop").fadeIn("slow");
				}
				else {
					// If it's less than 0 (at the top), hide the toTop button.
					console.log("is less");
					$("#toTop").fadeOut("slow");
 
				}
			});
 
			// When the user clicks the toTop button, we want the page to scroll to the top.
			$("#toTop").click(function(){
 
				// Disable the default behaviour when a user clicks an empty anchor link.
				// (The page jumps to the top instead of // animating)
				event.preventDefault();
 
				// Animate the scrolling motion.
				$("html, body").animate({
					scrollTop:0
				},"slow");
 
			});
			
		});
    </script>


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

	<script type="text/javascript" src="js/slimbox2.js"></script>
	
<link rel="stylesheet" href="css/slimbox2.css" type="text/css" media="screen" />
	
<style type="text/css">
	
body 
{

	background-color: #fff;
	
	font-family: arial, helvetica, sans-serif;
		
	color: #000;
		
}
		
h1, p {
text-align: center;
}

	p {
margin-top: 100px;
}
	
	a {
font-weight: bold;
	color: #f00;
	}
	
</style>
<link href="User.css" rel="stylesheet" type="text/css" />
<meta name="subject" content="City Managers Association Madhya Pradesh">
<meta name="Description" content="City Managers Association Madhya Pradesh">
<meta name="Keywords" content="CMA, CMAMP, City Managers Association, City Managers Association Madhya Pradesh, Urban Administration & Development Department, Madhya Pradesh, Urban Renewal, Best Practice, CMA, UAD, Urban, MPUSP, Project Uday, JNNURM, UIDSSMT, IHSDP, CDP, BRGF, CDP">
<meta name="Abstract" content="Urban Sector, Best Practices, NIUA, FIRE, USAID, CDP">
<meta name="Geography" content="Bhopal Madhya Pradesh">
<meta name="Language" content="English">
<meta name="resource-type" content="document">
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Expires" content="never">
<meta http-equiv="CACHE-CONTROL" content="PUBLIC">
<meta http-equiv="PRAGMA" content="NO-CACHE">
<meta http-equiv="refresh" content="1000">
<meta name="Author" content="cmamp.com">
<meta name="Copyright" content="City Managers Association, Madhya Pradesh">
<meta name="Revisit-After" content="1 days">
<meta name="distribution" content="Global">
<meta name="Robots" content="INDEX,FOLLOW">
<meta name="city" content="Bhopal, MP">
<meta name="country" content="India">


<script type="text/javascript">
if (!document.all)
	{
	document.captureEvents(Event.MOUSEMOVE)
	}	
document.onmousemove = getPosition;

var mMessage = '';
var X = 0
var Y = 0

function ValidateLogin(mUsername, mPassword)
	{
	var mValid = true;	
	mMessage = '';
	
	if (mUsername.value.length == 0)
		{
		mMessage = '* Please Enter Username...<br />';
		mValid = false;
		}
	for(var i = 0; i < mUsername.value.length; i++)
		{
		var cUsername = mUsername.value.charAt(i);
		if ((cUsername == ' ') || (cUsername == '\n') || (cUsername == '\t'))
			{
			mMessage = mMessage + '* Invalid Username...<br />';
			mValid = false;
			break;
			}
		}
	
	if (mPassword.value.length == 0)
		{
		mMessage = mMessage + '* Please Enter Password...<br />';
		mValid = false;
		}
	for(var j = 0; j < mPassword.value.length; j++)
		{
		var cPassword = mPassword.value.charAt(j);
		if ((cPassword == ' ') || (cPassword == '\n') || (cPassword == '\t'))
			{
			mMessage = mMessage + '* Invalid Password...<br />';
			mValid = false;
			break;
			}
		}
		
	if (mValid == false)
		{
		popUp();
		backgroundFilter();
		return false;
		}
	else
		{
		return true;
		}
	}

function getPosition(args) 
	{
  	if (document.all) 
  		{
    	X = event.clientX + document.body.scrollLeft
    	Y = event.clientY + document.body.scrollTop
  		}
  	else 
  		{  
    	X = args.pageX
    	Y = args.pageY
  		}  
	}

function backgroundFilter()
	{
    var div;
    
    if(document.getElementById)
		{
		div = document.getElementById('backgroundFilter'); 
		}
    else if(document.all) 
		{
		div = document.all['backgroundFilter']; 
    	}
		
	div.style.height = getDocHeight() + 'px';
	
	if(div.style.display==''&&div.offsetWidth!=undefined&&div.offsetHeight!=undefined)
    	{
        div.style.display = (div.offsetWidth!=0&&div.offsetHeight!=0)?'block':'none'; 
    	}
    div.style.display = (div.style.display==''||div.style.display=='block')?'none':'block';
}

function popUp()
{
    var div;
    
    if(document.getElementById)
		{
		div = document.getElementById('popupWindow'); 
		}
    else if(document.all) 
		{
    	div = document.all['popupWindow']; 
    	}
    
	//Start
	//Change Div Pop-Up
	var divBody;
    
    if(document.getElementById)
		{
		divBody = document.getElementById('popupBody'); 
		}
    else if(document.all) 
		{
    	divBody = document.all['popupBody']; 
    	}
	divBody.innerHTML = mMessage;
	//Change Div Pop-Up
	//End
	
	if(div.style.display==''&&div.offsetWidth!=undefined&&div.offsetHeight!=undefined)
    	{
        div.style.display = (div.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none'; 
    	}
    
    div.style.display = (div.style.display==''||div.style.display=='block')?'none':'block';
    
	//For Mouse Position
	/*X = X + 15;
    Y = Y - 100;
	div.style.left = X + 'px';
    div.style.top = Y + 'px';*/
	
}

function getDocHeight() 
	{
    var D = document;
    return Math.max(Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
        			Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
        			Math.max(D.body.clientHeight, D.documentElement.clientHeight));
	}
</script>

<meta name="google-site-verification" content="IlFcdyNriTsLkmE6SZUj3DihayW1i_OA4wuqEeaFqkI" />

<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style1 {font-size: 16px}
-->
</style>
<!-- InstanceEndEditable -->

<!--Google Analytics-->
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-10889590-2']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
<!--Google Analytics-->

</head>

<!--<body bgcolor="#999999" style="clear: both">-->
<body background="Images/Gradient.gif" bgproperties="fixed">
<!--<body>
<img src="../Images/Gradient.gif" alt="background image" id="bg" />-->
	<div id="backgroundFilter">
	</div>
	
	<!--<div align="center" id="content">-->
	<div align="center">
		<table border="0" cellpadding="5px" cellspacing="5px" width="985px"><tbody><tr><td> <!--width="985px"-->
			<table border="0" cellpadding="0px" cellspacing="0px" width="100%">
				<tbody>
					<tr>
						<td bgcolor="#cccccc" align="left">
							<div style="text-align: left; margin: 10px 10px 10px 10px; background-color: #2D8FC0; height: 94px;">
								<img src="Images/BannerCMAMP/BannerCMAMP.gif" alt="" />
								<table style="position: relative; top: -33px; left: 0px; width: 100%; height: auto; text-align: right; vertical-align: bottom; clear: both">
									<tr>
										<td align="right">
											<table border="0" cellpadding="2" cellspacing="5">
												<tr>
													<td>
														<a href="Index.php" style="color:#FFFFFF">Home&nbsp;</a> |													</td>
													<td>
														<a href="http://mail.google.com/a/cmamp.com/" style="color:#FFFFFF">Check Mail&nbsp;</a> |													</td>
													<td>
														<a href="Feedback.php" style="color:#FFFFFF">Feedback&nbsp;</a> |													</td>
													<td>
														<a href="LocateUs.php" style="color:#FFFFFF">Locate Us&nbsp;</a> |													</td>
													<td>
														<a href="ContactUs.php" style="color:#FFFFFF">Contact Us</a>													</td>
												</tr>
										  </table>
										</td>
									</tr>
								</table>
							</div>
						</td>
					</tr>
					
					<tr>
						<td height="10px"></td>
					</tr>
					
					<tr>
						<!--Main Body Start-->
						<td>
							<table border="0" cellpadding="0" cellspacing="0" width="100%">
							<tbody>
								<tr>
									<td width="200px" valign="top">
									<table cellpadding="0" cellspacing="0"><tr><td width="200px" align="center" valign="middle" bgcolor="#cccccc">
										<div style="margin: 10px 10px 10px 10px; width: 180px; text-align: center; background-color: #2D8FC0;">
											<table width="100%" border="1" align="center" cellpadding="5" cellspacing="0" bordercolor="#cccccc" style="text-align: center">
												<tr>
													<td>
														<a href="AboutUs.php" style="color:#FFFFFF">About Us</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Project.php" style="color:#FFFFFF">Projects</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Publication.php" style="color:#FFFFFF">Publications</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Tender.php" style="color:#FFFFFF">Tenders</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Recruitment.php" style="color:#FFFFFF">Recruitments</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="News.php" style="color:#FFFFFF">News</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Download.php" style="color:#FFFFFF">Download</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="WhatsNew.php" style="color:#FFFFFF">What's New</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Membership.php" style="color:#FFFFFF">Membership</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="TeamMember.php" style="color:#FFFFFF">Team CMA, MP</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="TeamMemberEx.php" style="color:#FFFFFF">Ex-Member CMA, MP</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Video.html" style="color:#FFFFFF">Video Gallery</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="PGMaster.php" style="color:#FFFFFF">Photo Gallery</a>													</td>
												</tr>
												<tr>
													<td>
														<a href="Search.php" style="color:#FFFFFF">Site Search</a>													</td>
												</tr>
										  </table>
									  </div>
									  <!--<div style="margin: 10px 10px 10px 10px; width: 180px; text-align: center; background-color:#FFFFFF">
									  
									  	<img src="../Images/PresidentCMAMP-3.jpg" alt="" />President<br />CMA, Madhya Pradesh </div>-->
									  <div style="margin: 10px 10px 10px 10px; width: 180px; text-align: center;">
									  		<table border="0" cellpadding="0" cellspacing="0" width="100%" style="text-align:center;">
											<tbody>
												<tr>
													<td style="padding-bottom:5px; font-size:1.2em; color:#1d75bf; font-weight:bold;">
														Login
														
														
													</td>
												<tr>
												<form onSubmit="return(ValidateLogin(this.TxtUserName, this.TxtPassword));" method="post" action="CP/CPLogin-Exec.php">
												<tr>
													<td>
														<span class="styleLogin">Email Address:</span> <br />
														<input type="text" name="TxtUserName" id="TxtUserName" tabindex="200" style="border:1px gray solid; width: 160px;" />
												  </td>
												<tr>
												<tr>
													<td>
														<span class="styleLogin">Password:</span> <br />
														<input type="password" name="TxtPassword" tabindex="201" style="border:1px gray solid; width: 160px;" />												  </td>
												<tr>
												<tr>
													<td align="center">
													  <span class="styleLogin">
														<INPUT type="submit" value="Sign In" name="Members" tabindex="202" style="background-color:#2D8FC0; color:white; font-weight:bold; font-size: 12px;"></span>
													</td>
												</tr>
												</form>
												
												<tr>
													<TD style="padding-top:5px; text-align:center; font-size:0.7em;">
														<span class="styleLogin">Not Registered Yet? 
														<a href="SignUp.html" style="color:#FFFFFF">Sign Up</a></span>
													</TD>
												</tr>
												
											</tbody>
											</table>	
									  	
									  </div>								  
									</td></tr></table>
									</td>
									<td width="10px">
										
									</td>
									<td valign="top" bgcolor="#cccccc">
										<div style="margin: 10px 10px 10px 10px; text-align: center; background-color: #2D8FC0;">
											
											<!-- InstanceBeginEditable name="ERMasterPage" -->
											
											<div style="text-align: center;">
													<table width="100%" cellpadding="5px" cellspacing="10px" >
														<tr>
															<td class="StyleTableHeader" style="background-color:#FFFFFF;">
																Conservation Plan
		</br>													</td>
														</tr>

<tr>
															<td  style="background-color:#FFFFFF;">
														<a href="#Dhar1">Dhar Lake Conservation Plan (Bhairoghat & Devisagar Lake)</a></br>
<a href="#Jhabua1">Jhabua Lake Conservation Plan (Rajwada Lake etc)</a></br>
<a href="#Jiran1">Jiran Land Conservation Plan</a></br>
<a href="#Ranapur1">Ranapur (Jhabua) Lake Conservation Plan</a></br>
<a href="#Sironj1">Sironj Lower Lake Conservation Plan</a></br>													</td>
														</tr>
														<tr>
														  <td valign="top" width="100%" style="background-color:#FFFFFF">
																<table border="0" bordercolor="#666666" cellpadding="0" cellspacing="0" class="TableMaster" >
																	<tbody>


<tr valign='top'>
																	<td align='center' width='33%'></br>	</br>	</td></tr>

																		<tr valign='top'>
																		<td align='center' width='33%'>
																				<table>
																					<tr>
							<a id="Dhar1"></a>														<td align='center'>
								<b>Dhar Lake Conservation Plan</b>														</br></br></br></br></br>
													<A title="Survey Drawing" href="ConservationPlan/BhairoDevisagarLake_DHAR.pdf" target="_blank">View Survey Drawing</A>
																				</td>
																					</tr>
																					
																					
																				</table>
																			</td>
																			
																			<td align='center' width='33%'>
																				<table>
																					<tr>
																					<td align='center'>
																						<a href="ConservationPlan/DharLp1.jpg" rel="lightbox" title="Dhar Lake Conservation Plan"><img src="ConservationPlan/DharLp1.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Dhar Lake Conservation Plan
</td></tr>
																				</table>
																			</td>
																			
																			<td align='center' width='33%'>
																				<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/DharLp2.jpg" rel="lightbox" title="Dhar Lake Conservation Plan"><img src="ConservationPlan/DharLp2.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Dhar Lake Conservation Plan
</td></tr>
																				</table>
																			</td>
																		</tr>


<tr valign='top'>
																			<td align='center' width='33%'></br></br></td></tr>
																	<tr valign='top'>
																			<td align='center' width='33%'>
																				<table>
																				<tr>
							<a id="Jhabua1"></a>														<td align='center'>
																						<b>Jhabua Lake Conservation Plan</b>														</br></br></br></br></br>		
													<A title="Survey Drawing" href="ConservationPlan/Rajwada_Lake_JHABUA.pdf" target="_blank">View Survey Drawing</A>
																					</td>
																					</tr>
																					
																					
																				</table>
																			</td>
																			
																			<td align='center' width='33%'>
																				<table>
																					<tr>
																					<td align='center'>
																						<a href="ConservationPlan/JhabuaLp1.jpg" rel="lightbox" title="Jhabua Lake Conservation Plan"><img src="ConservationPlan/JhabuaLp1.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Jhabua Lake Conservation Plan
</td></tr>
																				</table>
																			</td>
																			
																			<td align='center' width='33%'>
																				<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/JhabuaLp2.jpg" rel="lightbox" title="Jhabua Lake Conservation Plan"><img src="ConservationPlan/JhabuaLp2.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Jhabua Lake Conservation Plan
</td></tr>
																				</table>
																			</td>
																		</tr>
																		<tr valign='top'>
																			<td align='center' width='33%'></br></br></td></tr>
																		<tr valign='top'>			
																			<td align='center' width='33%'>
																				<table>
																					<tr>
							<a id="Jiran1"></a>														<td align='center'>
																						<b>Jiran Land Conservation Plan</b>														</br></br></br></br></br>		
													<A title="Survey Drawing" href="ConservationPlan/JIRANLAND_NEEMACH.pdf" target="_blank">View Survey Drawing</A>
																					</td>
																					</tr>
															
																				</table>
																			</td>
																		
																			<td align='center' width='33%'>
																				<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/JeeranLp1.jpg" rel="lightbox" title="Jiran Land Conservation Plan"><img src="ConservationPlan/JeeranLp1.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Jiran Land Conservation Plan</td></tr>
																				</table>
																			</td>
																		
																			<td align='center' width='33%'>
																			<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/JeeranLp2.jpg" rel="lightbox" title="Jiran Land Conservation Plan"><img src="ConservationPlan/JeeranLp2.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Jiran Land Conservation Plan 
</td></tr>
																				</table>	
																			</td>
																		</tr>
																		<tr valign='top'>
																			<td align='center' width='33%'></br></br></td></tr>
																		<tr valign='top'>		
																			<td align='center' width='33%'>
																			<table>
																					<tr>
							<a id="Ranapur1"></a>														<td align='center'>
																						<b>Ranapur Lake Conservation Plan</b>														</br></br></br></br></br>		
													<A title="Survey Drawing" href="ConservationPlan/Lake_RANAPUR.pdf" target="_blank">View Survey Drawing</A>
																					</td>
																					</tr>
																																	</table>	
																			</td>
																		
																			<td align='center' width='33%'>
																			<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/RanapurLp1.jpg" rel="lightbox" title="Ranapur Lake Conservation Plan"><img src="ConservationPlan/RanapurLp1.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Ranapur Lake Conservation Plan 
</td></tr>
																				</table>		
																			</td>
																		
																			<td align='center' width='33%'>
																			<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/RanapurLp2.jpg" rel="lightbox" title="Ranapur Lake Conservation Plan"><img src="ConservationPlan/RanapurLp2.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Ranapur Lake Conservation Plan 
</td></tr>
																				</table>		
																			</td>
																		</tr>
																		<tr valign='top'>
																			<td align='center' width='33%'></br></br></td></tr>
																		<tr valign='top'>	
																			<td align='center' width='33%'>
																			<table>
																					<tr>
							<a id="Sironj1"></a>														<td align='center'>
																						<b>Sironj Lake Conservation Plan</b>														</br></br></br></br></br>		
													<A title="Survey Drawing" href="ConservationPlan/lowerLake_sironj.pdf" target="_blank">View Survey Drawing</A>
																					</td>
																					</tr>
														
																				</table>		
																			</td>
																		
																			<td align='center' width='33%'>
<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/SironjLp1.jpg" rel="lightbox" title="Sironj Lake Conservation Plan"><img src="ConservationPlan/SironjLp1.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Sironj Lake Conservation Plan
</td></tr>
																				</table>																					
																			</td>
                                                                                                                                                          <td align='center' width='33%'>
<table>
																					<tr><td align='center'>
																						<a href="ConservationPlan/SironjLp2.jpg" rel="lightbox" title="Sironj Lake Conservation Plan"><img src="ConservationPlan/SironjLp2.jpg"  height="160" width="200"></a>
																					</td>
																					</tr>
																					
																					<tr><td class='PGDesc'>Sironj Lake Conservation Plan 
</td></tr>
																				</table>																					
																			</td>
																		</tr>
                                                                                                                                                <tr valign='top'>
                                                                                                                                                <td align='center' width='33%'>
																				
																			</td>
<td align='center' width='33%'>
																				
																			</td>
                                                                                                                                                </tr>
<tr valign='top'>
                                                                                                                                               
                                                                                                                                                </tr>
																	</tbody>
																</table>
															</td>
														</tr>
													</table>
												</div>
											
											<!-- InstanceEndEditable -->
											
										</div>
									</td>
								</tr>		
							</tbody>
							</table>
						</td>
					</tr>
					
					<tr>
						<td height="10px"></td>
					</tr>
					
					<tr>
						<td valign="top" bgcolor="#cccccc">
							<div style="margin: 10px; text-align: center; background-color: #2D8FC0;">
								<a href="Index.php" style="color:#FFFFFF">Home</a> | 
								<a href="#" style="color:#FFFFFF">About Us</a> | 
								<a href="http://mail.google.com/a/cmamp.com/" style="color:#FFFFFF">Check Mail</a> | 
								<a href="ContactUs.php" style="color:#FFFFFF">Contact Us</a> | 
								<a href="Feedback.php" style="color:#FFFFFF">Feedback</a> | 
								<a href="TC.php" style="color:#FFFFFF">Terms &amp; Conditions</a> | 
								<a href="PP.php" style="color:#FFFFFF">Privacy Policy</a>							</div>
						</td>
					</tr>
					<tr>
						<td>
							<table style="width: 100%;" border="0" cellpadding="2" cellspacing="2">
							<tbody>
								<tr>
									<td width="25%" style="font-size: 0.7em;">
										© 2009-2010 City Managers' Association, Madhya Pradesh
									</td>
									<td style="font-size: 0.7em; text-align: center;">
										Address: Room No. 306/307, Second Floor, Palika Bhawan, Shivaji Nagar, Bhopal Pin 462016
									</td>
									<td style="font-size: 0.7em; text-align: center;">
										email: contact@cmamp.com, cmampindia@yahoo.com, cmamp@mpurban.gov.in</td>
									<td width="14%" style="font-size: 0.7em; text-align: right;">
										Phone: +91 755 4044490
									</td>
								</tr>
							</tbody>
							</table>
						</td>
					</tr>
					
					<tr>
						<td>
							<div align="center">
								<a href="http://www.mpurban.gov.in" style="font-size:0.8em; color:#FFFFFF">UADD</a> | 
								<a href="http://www.projectuday.org.in" style="font-size:0.8em; color:#FFFFFF">Project Uday </a> | 
								<a href="http://www.mpusp.org" style="font-size:0.8em; color:#FFFFFF">Project Utthan </a> | 
								<a href="http://www.icma.org" style="font-size:0.8em; color:#FFFFFF">ICMA</a> | 
								<a href="http://www.niua.org" style="font-size:0.8em; color:#FFFFFF">NIUA</a> | 
								<a href="http://www.iclei.org" style="font-size:0.8em; color:#FFFFFF">ICLEI</a> | 
								<a href="http://www.niua.org/fire-d.asp" style="font-size:0.8em; color:#FFFFFF">Fire-D</a> | 
								<a href="http://www.ghkint.com" style="font-size:0.8em; color:#FFFFFF">GHK</a> | 
								<a href="http://www.adb.org" style="font-size:0.8em; color:#FFFFFF">ADB</a>  | 
								<a href="http://www.usaid.gov" style="font-size:0.8em; color:#FFFFFF">USAID</a> | 
								<a href="http://www.dfid.gov.uk" style="font-size:0.8em; color:#FFFFFF">DFID</a>
							</div>
						</td>
					</tr>
				</tbody>
		  </table>
		</td></tr></tbody></table>
	</div>
	
	
	<!--Pop Up-->
	<div id="popupWindow">
		<div align="center" style="background-color: #2D8FC0; padding:10px;">
			<b>Error Message</b>
			<br /><br />
			<div id="popupBody" align="center" style="padding: 10px;">
				
			</div>
			<br />
			<INPUT onclick="javascript:popUp();backgroundFilter();" type="button" value="Close" name="PopUpClose" style="background-color:#cccccc; color:white; font-weight:bold; font-size: 12px;">
		</div>
	</div>
<!-- The "button" that takes you to the top of the page when clicked -->
<a id="toTop" href="#">Go to Top</a>


</body>
<!-- InstanceEnd --></html>

Discord hacker0088#9402

FSecurity.org
IP Adresiniz :D