function sendRequest(pURL, pQueryString, pCallBack, pMethod) {
	if(!pMethod || (pMethod != "POST" && pMethod != "GET")) pMethod = "POST";
	(new ajaxObject(pURL, pCallBack)).update(pQueryString, pMethod);	
}
