var xmlhttp=null;
    
function loadText(page,parameter,id){    

        
		  	try { 
		
		if (window.XMLHttpRequest)  xmlhttp = new XMLHttpRequest();  
           else if (window.ActiveXObject)         
                    xmlhttp = new ActiveXObject((navigator.userAgent.toLowerCase().indexOf('msie 5') != -1) ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP");    
                        
         }catch(e){xmlhttp=null;}
		   param="?"+parameter;
		  // alert("Biswajit :"+page+param);
		   xmlhttp.open('GET',page+param,true);
		   xmlhttp.onreadystatechange=function (){
		                                           if((xmlhttp.readyState == 4)&&(xmlhttp.status == 200)){
                                                     var response = xmlhttp.responseText;
													    alert("return data="+response);
														
                                                       document.getElementById(id).value=response;
		                                                  }
												}//inner function
												
		try {			  
	       xmlhttp.send(null);
		    }catch(e) {alert("not working");}
		}//loadfunction
	