function Meta1(){
}
Meta1.prototype.__Meta1_init=
Meta1.prototype._init=
function _init(){
	window.onload=this.onload()
	mybody=document.getElementById("body")
	mybody.onclick=this.associateObjWithEvent(this,"bodyClick")
	this.setMousemoveOn()
}
Meta1.prototype.associateObjWithEvent=
function (obj,methodName){
    return (function(e){
        e = e||window.event;
        return obj[methodName](e, this);
    });
}
Meta1.prototype.associateObjWithFunc=
function (obj,methodName){
    return (function(parms){
        return obj[methodName](this,parms);
    });
}

Meta1.prototype.bodyClick=
function (obj,methodName){
}

Meta1.prototype.HTTPReq=function(myHTTP){
	if(myHTTP.req.readyState<4)return
	this.myBody.style.cursor="default"	
	if(!myHTTP.req.responseText)return
//alert(myHTTP.req.responseText)
	return myHTTP.getVarss()
}
Meta1.prototype.HTTPSend=function (myHttp,funcname){
	this.myBody.style.cursor="wait"
	myHttp.req.onreadystatechange=
		this.associateObjWithFunc(this,funcname)
	myHttp.req.open("GET",myHttp.url,true)
	myHttp.req.send(null)
}
Meta1.prototype.mousemove=
function (event,element){
	var evt=new MyMouseEvent(event)
	this.mousemoveXY=evt.getMouseXY()
}
Meta1.prototype.__Meta1_onload=
Meta1.prototype.onload=
function onload(){
}
Meta1.prototype.setMousemoveOn=
function setMousemoveOn(){
	document.onmousemove=this.associateObjWithEvent(this,"mousemove")
	//if(bd.browser!="IE")document.captureEvents(Event.MOUSEMOVE)
}	
