var xPoint = "";
var yPoint = "";

function mostraPesquisa(e)
{
	mx = (nn6) ? e.clientX : event.clientX;
	my = (nn6) ? e.clientY : event.clientY;
		
	$('Pesquisa_Prox').style.display = 'block';
	$('Pesquisa_Prox').style.top  = (my - 10) + 'px';
	$('Pesquisa_Prox').style.left = (mx + 30) + 'px';
}	

function escondePesquisa()
{
	$('Pesquisa_Prox').style.display = 'none';
	$('Pesquisa_Prox').style.top  = '0px';
	$('Pesquisa_Prox').style.left = '0px';
}

function setPrxCoords(x,y)
{
	xPoint = parseInt(x);
	yPoint = parseInt(y);
}

function mostraDetalhes(id_detalhe,e,desc)
{
	var evt = e || event;

	x = evt.clientX + document.body.scrollLeft;
	y = evt.clientY + document.body.scrollTop;
	
	var field = "IDSIG";
	var id = 1698;
	var whereClause = field + " = " + id_detalhe;
	
	pedeDados('PESQUISARDADOS',{"id":id,"whereClause":whereClause});
	
	IDT_MOUSE = { "clientX": x, "clientY": y };	
}

function escondeDetalhes()
{
	$('Pesquisa_Detalhe').style.display = 'none';
	$('Pesquisa_Detalhe').style.top  = '0px';
	$('Pesquisa_Detalhe').style.left = '0px';
}

function zoomPoint(x,y)
{
	pedeMapa('ZOOMPOINT',{"x":x,"y":y});
}

function zoomVias(id)
{
	pedeMapa('ZOOMVIAS',{"id":id});
}

function zoomSitios(id)
{
	pedeMapa('ZOOMSITIOS',{"id":id});
}


