/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
AjaxFun = {}
    AjaxFun.sendRequest = function(m,u,c)
    {
	var d=new Date();
	var a= d.getMilliseconds();
	if(u.indexOf('?')>-1)
	    {
		u += '&t='+a;
	    }
	else
	    {
		u += '?t='+a;
	    }
	this.request = (window.XMLHttpRequest)? new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
	this.request.onreadystatechange=c;
	this.request.open(m,u,true);
	this.request.send(null);
    }
