// JavaScript Document

/*
*	Function take input value on submit of request a quote module
*/

function checkPaging()
{

/*
*	Creating XMLHttp object 
*/
		 xmlHttp=GetXmlHttpObject()
		 
/*
*	If XMLHttp protocol is null then browser is not supporting HTTP request
*/
		if (xmlHttp==null)
		  {
			  alert ("Browser does not support HTTP Request")
			  return
		  } 
		   
/*
*	Defining url and giving string value fetched on keypress then sending it to 
*	default.php file for further processing
*/
	
		var url="currentprojects.php?Sproject=Sproject";
	
/*
*	If any reponse found then take it then process it to statechaged function
*/
		xmlHttp.onreadystatechange=stateChangedPaging 
		xmlHttp.open("GET",url,true)
		xmlHttp.send(null)
}
/*
*	Function that passes reponse to html file
*	If state is 4 or complete then it sends response to suggesion div 
*/
function stateChangedPaging() 
{
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{
		
		
	} 
}
