function iknow(requrl,id,status){
		var table_row_id = "div"+id;
		var url = requrl+"chandigarhwallahsupdated?id="+id+"&status="+status;
		//alert(url);
		var row = document.getElementById(table_row_id);
		row.style.display = 'none';
		xmlHttp=GetXmlHttpObject();		
		xmlHttp.onreadystatechange=Changed;
		xmlHttp.open("GET", url, true);
		xmlHttp.send(null);    
		function Changed(){		
			if((xmlHttp.readyState == 4 || xmlHttp.readyState == "completed" || xmlHttp.readyState == 200)){
				//alert(xmlHttp.responseText);
				//var url1=requrl+"thankstoadd?id="+id+"&response="+status;
				//MM_openBrWindow(url1,'','width=400,height=135');
				document.getElementById('updateDiv').innerHTML=xmlHttp.responseText;			
				return false;
			}
			else{
				document.getElementById('updateDiv').innerHTML='<div  align="center">Loading Content.......<img src="images/loading.gif">....... </div>';
				}
		}
	
	}
	
	function iknowhome(requrl,id,status){
		
		var url = requrl+"chandigarhwallahshome?id="+id+"&status="+status;
	
		
		xmlHttp=GetXmlHttpObject();		
		xmlHttp.onreadystatechange=Changed;
		xmlHttp.open("GET", url, true);
		xmlHttp.send(null);    
		function Changed(){		
			if((xmlHttp.readyState == 4 || xmlHttp.readyState == "completed" || xmlHttp.readyState == 200)){
				//alert(xmlHttp.responseText);
				var url1=requrl+"thankstoadd?id="+id+"&response="+status;
				MM_openBrWindow(url1,'','width=400,height=135');
				document.getElementById('fmsouter').innerHTML=xmlHttp.responseText;			
				return false;
			}
			else{
				document.getElementById('fmsouter').innerHTML='<div  align="center">Loading Content.......<img src="images/loading.gif">....... </div>';
				}
		}
	
	}
	
	function iknowstatus(respondurl,id,status){
		var table_row_id = "div"+id;
		var url = "knowstatus?id="+id+"&status="+status;
		//alert(url);
		var row = document.getElementById(table_row_id);
		row.style.display = 'none';
		xmlHttp=GetXmlHttpObject();		
		xmlHttp.onreadystatechange=Changed;
		xmlHttp.open("GET", url, true);
		xmlHttp.send(null);    
		function Changed(){		
			if((xmlHttp.readyState == 4 || xmlHttp.readyState == "completed" || xmlHttp.readyState == 200)){
				//alert(xmlHttp.responseText);
				document.getElementById('output').innerHTML="one Famous chandigarhwallah add in your list";
				//var url1=respondurl+"thankstoadd?id="+id+"&response="+status;
				//MM_openBrWindow(url1,'','width=400,height=135');
				
				return false;
			}
			else{
				//document.getElementById('output').innerHTML="Loading...........";
				}
		}
	
	}
