function Obj(){
	this.Obj()
}
Obj.prototype.associateObjWithEvent=
function(obj,methodName){
    return (function(e){
        e = e||window.event;
        return obj[methodName](e, this);
    });
}
Obj.prototype.associateObjWithFunc=
function(obj,methodName){
    return (function(parms){
        return obj[methodName](this,parms);
    });
}
Obj.prototype.HTTPReq=
function(myHTTP){
	if(myHTTP.req.readyState<4)return
	this.meta1.myBody.style.cursor="default"	
	if(!myHTTP.req.responseText)return
//alert(myHTTP.req.responseText)
	return myHTTP.getVarss()
}
Obj.prototype.HTTPSend=
function(myHttp,funcname){
	this.meta1.myBody.style.cursor="wait"
	myHttp.req.onreadystatechange=
		this.associateObjWithFunc(this,funcname)
	myHttp.req.open("GET",myHttp.url,true)
	myHttp.req.send(null)
}
