var xmlhttp;

function LoadXML(metodo,url,objeto)
{
	if(window.XMLHttpRequest){
		xmlhttp = new XMLHttpRequest();
	}
	if(window.ActiveXObject){
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=objeto;
	xmlhttp.open(metodo,url,true);
	xmlhttp.send(null);
}

function AbreJanela(url,nome,top,left,width,height)
{
	window.open(url,nome,"top="+top+",left="+left+",width="+width+",height="+height+",status=0,menu=0,location=0");
}
