depreciados.js 32.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
/*
Title: Depreciados

Funções ou variáveis depreciadas. Mantidas aqui para efeitos de compatibilidade

Arquivo: i3geo/classesjs/depreciados.js

*/
function i3GEOmantemCompatibilidade(){
	try{
		i3GEO.configura.oMenuData = oMenuData;
	}
	catch(e){}
	try{
		i3GEO.configura.tipoimagem = g_tipoimagem;
	}
	catch(e){}
	try{
		i3GEO.configura.tipotip = g_tipotip;
	}
	catch(e){}
	try{
		i3GEO.configura.funcaoTip = g_funcaoTip;
	}
	catch(e){}

	try{
		i3GEO.configura.map3d = g_3dmap;
	}
	catch(e){}
	try{
		i3GEO.configura.embedLegenda = g_embedLegenda;
	}
	catch(e){}
	try{
		i3GEO.configura.templateLegenda = g_templateLegenda;
	}
	catch(e){}
	try{
		if(objmapa.finaliza != "")
		i3GEO.finaliza = objmapa.finaliza;
	}catch(e){};
	g_arvoreClick = "";
	g_arvoreClicks = "";

	if ($i("longlat")){
		atualizalonglat = function(){
			$i("longlat").innerHTML = objposicaocursor.dmsx + "   " +  objposicaocursor.dmsy;
		};
		YAHOO.util.Event.addListener($i("img"),"mousemove", atualizalonglat);
	}
	try {
		if (g_opcoesTemas == "nao")
		{i3GEO.arvoreDeCamadas.OPCOESTEMAS = false;}
	}
	catch(e){};
	try {
		i3GEO.maparef.fatorZoomDinamico = g_zoomRefDinamico;
	}
	catch(e){};
	try {
		i3GEO.configura.mashuppar = g_mashuppar;
	}
	catch(e){};
	try{
		//if($i("arvoreAdicionaTema") || $i("outrasOpcoesAdiciona")){
			if(!$i("arvoreAdicionaTema"))
			{i3GEO.arvoreDeTemas.IDHTML = objmapa.guiaMenu+"obj";}
			else
			{i3GEO.arvoreDeTemas.IDHTML = "arvoreAdicionaTema";}
		//}
	}
	catch(e){};
	try {
		if (g_uploaddbf == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.uploaddbf = false;}
	}
	catch(e){};
	try {
		if (g_uploadlocal == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.uploadlocal = false;}
	}
	catch(e){};
	try {
		if (g_downloadbase == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.downloadbase = false;}
	}
	catch(e){};
	try {
		if (g_conectarwms == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.conectarwms = false;}
	}
	catch(e){};
	try {
		if (g_conectargeorss == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.conectargeorss = false;}
	}
	catch(e){};
	try {
		if (g_nuvemTags == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.nuvemTags = false;}
	}
	catch(e){};
	try {
		if (g_kml == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.kml = false;}
	}
	catch(e){};
	try {
		if (g_qrcode == "nao")
		{i3GEO.arvoreDeTemas.OPCOESADICIONAIS.qrcode = false;}
	}
	catch(e){};
	try{
		if(g_tipoacao != "")
		{i3GEO.barraDeBotoes.BOTAOPADRAO = g_tipoacao;}
	}
	catch(e){}
	try {
		if (g_listaPropriedades)
		{i3GEO.configura.listaDePropriedadesDoMapa = g_listaPropriedades;}
	}
	catch(e){};
	try {
		if (g_tempo_aplicar)
		{i3GEO.configura.tempoAplicar = g_tempo_aplicar;}
	}
	catch(e){};
	try {
		if (g_janelaMen == "nao")
		{i3GEO.configura.iniciaJanelaMensagens = false;}
	}
	catch(e){};
	try {
		if (g_locaplic)
		{i3GEO.configura.locaplic = g_locaplic;}
	}
	catch(e){};
	try {
		if (g_tempotip)
		{i3GEO.configura.tempoMouseParado = g_tempotip;}
	}
	catch(e){};
	try {
		if (g_mostraRosa)
		{i3GEO.configura.mostraRosaDosVentos = g_mostraRosa;}
	}
	catch(e){};
	try {
		if (g_visual)
		{i3GEO.configura.visual = g_visual;}
	}
	catch(e){};
	try {
		if (g_mapaRefDisplay)
		{i3GEO.configura.mapaRefDisplay = g_mapaRefDisplay;}
	}
	catch(e){};
	try {
		if (g_docaguias)
		{i3GEO.configura.liberaGuias = g_docaguias;}
	}
	catch(e){};
	if (window.location.href.split("?")[1]){
		g_sid = window.location.href.split("?")[1];
		if (g_sid.split("#")[0])
		{g_sid = g_sid.split("#")[0];}
	}
	else
	{g_sid = "";}
	i3GEO.configura.sid = g_sid;
	try{
		i3GEO.guias.ATUAL = g_guiaativa;
	}
	catch(e){}
	try{
		i3GEO.navega.autoRedesenho.INTERVALO = g_autoRedesenho;
	}
	catch(e){}
	try{
		i3GEO.eventos.NAVEGAMAPA = g_funcoesNavegaMapaDefault;
	}
	catch(e){}
	try{
		i3GEO.eventos.MOUSEMOVE = g_funcoesMousemoveMapaDefault;
	}
	catch(e){}
	try{
		i3GEO.eventos.MOUSECLIQUE = g_funcoesClickMapaDefault;
	}
	catch(e){}
	try{
		i3GEO.configura.entorno = g_entorno;
	}
	catch(e){}
	try{
		i3GEO.navega.lente.POSICAOX = g_posicaoLenteX = 0;
	}
	catch(e){}
	try{
		i3GEO.navega.lente.POSICAOY = g_posicaoLenteY;
	}
	catch(e){}
	try{
		i3GEO.navega.destacaTema.TAMANHO = destacaTamanho;
	}
	catch(e){}
	if (!$i("tip")){
		var novoel = document.createElement("div");
		novoel.id = "tip";
		novoel.style.position="absolute";
		novoel.style.zIndex=5000;
		if (navm)
		{novoel.style.filter = "alpha(opacity=90)";}
		document.body.appendChild(novoel);
	}
	/*
	Function: atualizaListaTemas (depreciado)

	Atualiza a lista de temas disponíveis no mapa (guia com a lista de temas)
	*/
	try{
		objmapa.atualizaListaTemas = function(temas)
		{alert("atualizaListaTemas foi depreciado. Utilize i3GEO.arvoreDeCamadas")};
	}
	catch(e){}
}

//
//
//
if(typeof(i3GEO) == 'undefined'){
	i3GEO = [];
}
cpObj = new cpaint();
cpObj.set_async("true");
cpObj.set_response_type("JSON");

/*
 Mapa (depreciado)
*/
function Mapa(e,m)
{
	i3GEO.cria();
	this.inicializa= function()
	{i3GEO.finaliza = this.finaliza;i3GEO.inicia();};
}
//
//funcoes depreciadas
//
objaguarde = {
	abre: function(){
		i3GEO.janela.abreAguarde("i3GEO.atualiza",$trad("o1"));
	},
	fecha: function(){
		i3GEO.janela.fechaAguarde("i3GEO.atualiza");
	}
};
/*
 iCookie (depreciado)

Utilize i3GEO.util

Cria um cookie.
*/
function iCookie(nome,valor)
{i3GEO.util.insereCookie(nome,valor);}
/*
 pCookie (depreciado)

Utilize i3GEO.util.pegaCookie
*/
function pCookie(nome)
{i3GEO.util.pegaCookie(nome);}
/*
 trocalingua (depreciado)

Utilize i3GEO.idioma.trocaIdioma
*/
function trocalingua(l)
{i3GEO.idioma.trocaIdioma(l);alert("trocalingua foi depreciado utilize i3GEO.idioma");}
/*
 initJanelaMen (depreciado)
*/
function initJanelaMen()
{i3GEO.ajuda.abreJanela();alert("initJanelaMen foi depreciado utilize i3GEO.ajuda");}
/* 
 pegalistademenus (depreciado)
*/
function pegalistademenus(retorno)
{alert("Funcao pegalistademenus foi depreciado. Utilize i3GEO.arvoreDeTemas");}
/*
 wdocaf (depreciado)
*/
function wdocaf(wlargura,waltura,wsrc,nx,ny,texto)
{var janela = i3GEO.janela.cria(wlargura,waltura,wsrc,nx,ny,texto);}
/*
 redimwdocaf (depreciado)
*/
function redimwdocaf(w,h)
{i3GEO.janela.alteraTamanho(w,h);alert("redimwdocaf foi depreciado utilize i3GEO.janela");}
/*
 wdocaf2 (depreciado)
*/
function wdocaf2(wlargura,waltura,wsrc,nx,ny,texto)
{
	var id = YAHOO.util.Dom.generateId();
	i3GEO.janela.cria(wlargura,waltura,wsrc,nx,ny,texto,id,true);
}
/*
 wdocafechaf (depreciado)
*/
function wdocafechaf(odoca)
{alert("wdocafechaf foi depreciado");}
/*
 mostradicasf (depreciado)
*/
function mostradicasf(objeto,dica,hlpt)
{i3GEO.ajuda.mostraJanela(dica);alert("mostradicasf foi depreciado utilize i3GEO.ajuda");}
/*
 mudaboxnf (depreciado)
*/
function mudaboxnf(tipo,obj,nomeFuncao)
{alert("mudaboxnf foi depreciado");}
/*
 inverteStatusClasse (depreciado)
*/
/*
 procurartemas (depreciado)

Localiza um tema no menu de temas.
*/
function procurartemas(texto)
{alert("procurartemas foi depreciado");}
/*
 expandeTema (depreciado)

*/
function expandeTema(itemID)
{
	//verifica se clicou para expandir a legenda
	var tema = itemID.split("legenda");
	if (tema.length == 2)
	{
		g_arvoreClick = itemID;
		tema = tema[1];
		var p = g_locaplic+"/classesphp/mapa_controle.php?funcao=criaLegendaHTML&template=legenda2.htm&tema="+tema+"&g_sid="+g_sid;
		cpObj.call(p,"criaLegenda",expandeLegendaVer);
	}
	alert("expandeTema foi depreciado");
}
/*
 expandeGrupo (depreciado)
*/
/*
 processaGrupos (depreciado)
*/
/*
 pegavalSistemas (depreciado)

Adiciona uma árvore no menu de adição de temas, contendo os sistemas que podem ser executados.
*/
function pegavalSistemas(sis)
{alert("Funcao pegavalSistemas foi depreciada - veja i3GEO.arvoreDeTemas");}
/*
 processevent1 (depreciado)

Captura a posição do mouse tendo como referência o navegador.

Atualiza o objeto objposicaomouse e movimenta as janelas docáveis.

Recalcula a posição correta da imagem do mapa.

Parameters:

exy1 - objeto evento.
*/
function processevent1(exy1)
{}
/*
 ativaDragDrop (depreciado)

Ativa a funcionalidade de arrastar e soltar para alteração da ordem de desenho dos temas e para excluir um tema do mapa.
*/
/*
 removeAcentos (depreciado)
*/
function removeAcentos(palavra)
{
	return(i3GEO.util.removeAcentos(palavra));
	alert("removeAcentos foi depreciado utilize i3GEO.util");
}
/*
 ativaMensagemBanner (depreciado
*/
function ativaMensagemBanner()
{alert("ativaMensagemBanner fooi depreciado utilize i3GEO.ajuda");}
/*
 mensagemBanner (depreciado)
*/
function mensagemBanner()
{}
/*
 mensagemf (depreciado)

Abre uma mensagem na tela em um DIV.

A mensagem é incluída em um elemento HTML com id ="mensagem"

Parameters:

m - mensagem que será mostrada.
*/
function mensagemf(m)
{
	alert("mensagemf foi depreciado");
	try
	{
		//insere o div para mensagens
		if (!$i("mensagem"))
		{
			var novoel = document.createElement("div");
			novoel.id = 'mensagem';
			novoel.innerHTML = '<table width="50" style="border: 1px solid #000000;"> <tr> <td onclick="mensagemf()" style="text-align:left;cursor:pointer" class="tdclara"> <img src="'+g_locaplic+'/imagens/excluir.png" /> </td> <td style="text-align:left" class="tdclara"> <input style="text-align:left" class="textocb" type="text" id="mensagemt" size="70" value="" /> </td></tr> </table>';
			if($i("i3geo"))
			{$i("i3geo").appendChild(novoel);}
			else
			{document.body.appendChild(novoel);}
		}
		if (m == null)
		{$i("mensagem").style.visibility = "hidden";}
		else
		{
			$i("mensagemt").value = m;
			$i("mensagem").style.visibility = "visible";
		}
		var pos = pegaPosicaoObjeto($i("img"));
		pos[1] = pos[1] + parseInt($i("img").style.height) - 22;
		eval ('document.getElementById("mensagem").style.' + g_tipoleft + ' = pos[0] + g_postpx');
		eval ('document.getElementById("mensagem").style.' + g_tipotop + ' = pos[1] + g_postpx');
	}
	catch(e){alert("Impossivel criar mensagem."+e);}
}
/*
 aguarde (depreciado)
*/
function aguarde()
{
	alert("aguarde foi depreciado utilize i3GEO.janela");
	this.abre = function(aguardeId,texto)
	{
		i3GEO.janela.abreAguarde(aguardeId,texto);
	};
	this.fecha = function(aguardeId)
	{
		i3GEO.janela.fechaAguarde(aguardeId);
	};
}
/*
 zoomiauto (depreciado)
*/
function zoomiauto()
{alert("zoomiauto foi depreciado utilize i3GEO.navega");i3GEO.navega.zoomin(g_locaplic,g_sid);}
/*
 zoomoauto (depreciado)
*/
function zoomoauto()
{alert("zoomoauto foi depreciado utilize i3GEO.navega");i3GEO.navega.zoomout(g_locaplic,g_sid);}
/*
 convdmsddf (depreciado)
*/
function convdmsddf(cd,cm,cs)
{alert("convdmsddf foi depreciado utilize i3GEO.calculo");return (i3GEO.calculo.dsm2dd(cd,cm,cs));}
/*
 zoomPonto (depreciado)
*/
function zoomPonto()
{alert("utilize i3GEO.navega.zoomponto");}
/*
 zoomIP (depreciado)
*/
function zoomIP()
{alert("zoomIP foi depreciado. Utilize i3GEO.navega.zoomIP");}
/*
 zoomtot
*/
function zoomtot()
{alert("zoomtot foi depreciado. Utilize i3GEO.navega.zoomExt");}
/*
 atualizaFarol (depreciado)
*/
/*
 panFixo (depreciado)
*/
function panFixo(direcao,w,h,escala)
{alert("panFixo foi depreciado. Utilize i3GEO.navega.panFixo");}
/*
 protocolo (depreciado)

Utilize i3GEO.util
*/
function protocolo()
{alert("protocolo foi depreciado utilize i3GEO.util");return(i3GEO.util.protocolo());}
//Mantido aqui apenas para fins de compatibilidade
function borra()
{}
/*
 pegaPosicaoObjeto (depreciado)
*/
function pegaPosicaoObjeto(obj)
{alert("pegaPosicaoObjeto foi depreciado utilize i3GEO.util");return(i3GEO.util.pegaPosicaoObjeto(obj));}
/*
 i3geo_pegaElementoPai (depreciado)
*/
function i3geo_pegaElementoPai(e)
{alert("i3geo_pegaElementoPai foi depreciado utilize i3GEO.util");return(i3GEO.util.pegaElementoPai(e));}
/*
 convddtela (depreciado)
*/
function convddtela(vx,vy,docmapa)
{alert("convddtela foi depreciado utilize i3GEO.calculo");return(i3GEO.calculo.dd2tela(vx,vy,docmapa,i3GEO.parametros.extent,i3GEO.parametros.pixelsize));}
/*
 convdmsf (depreciado)
*/
function convdmsf(x,y)
{alert("convdmsf foi depreciado utilize i3GEO.calculo");return(i3GEO.calculo.dd2dms(x,y));}
/*
 calcddf (depreciado)
*/
function calcddf(xfign,yfign,g_celula,imgext)
{alert("calcddf foi depreciado utilize i3GEO.calculo");return(i3GEO.calculo.tela2dd(xfign,yfign,g_celula,imgext));}
/*
 movecursor (depreciado)

Move o ícone que segue o mouse quando da movimentação sobre o mapa
*/
function movecursor()
{
	//
	//se a interface openlayers ou flamingo estiver sendo usada, o ícone não é mostrado
	//'obj' é o elemento que guarda o ícone que segue o mouse
	//
	if ($i("obj"))
	{
		if ($i("openlayers") || $i("flamingo"))
		{$i("obj").style.display = "none";}
		else
		{
			var obje = $i("obj").style;
			if ($i("img"))
			{
				eval ("obje." + g_tipotop + "= objposicaocursor.telay + 9 + g_postpx");
				eval ("obje." + g_tipoleft + "= objposicaocursor.telax + 9 + g_postpx");
			}
			else
			{
				eval ("obje." + g_tipotop + "= objposicaocursor.telay - 15 + g_postpx");
				eval ("obje." + g_tipoleft + "= objposicaocursor.telax + 15 + g_postpx");
			}
		}
	}
	if($i("box1"))
	{
		var bx = $i("box1");
		if (bx.style.visibility != "visible")
		{
			//move o box para a posição correta
			bx.style.left = objposicaocursor.telax + g_postpx;
			bx.style.top = objposicaocursor.telay + g_postpx;
		}
	}
}
/*
 g_janelaMen (depreciado)
*/
/*
 g_downloadbase (depreciado)

Define se na árvore de adição de temas, será mostrada a opção de download dos dados.
*/
/*
 g_conectargeorss (depreciado)

Define se na árvore de adição de temas, será mostrada a opção de conexão com GeoRSS.
*/
/*
 g_nuvemTags (depreciado)

Define se na árvore de adição de temas, será mostrada a opção de busca de temas por tags.
*/
/*
 g_uploadlocal (depreciado)

Define se na árvore de adição de temas, será mostrada a opção de upload.
*/
/*
 g_uploaddbf (depreciado)

Define se na árvore de adição de temas, será mostrada a opção de upload de arquivo dbf.
*/
/*
 g_conectarwms (depreciado)

Define se na árvore de adição de temas, será mostrada a opção de conexão com WMS.
*/
/*
 g_funcoesMouseParado (depreciado)
*/
/*
 g_tempotip (depreciado)
*/
/*
Variable: g_mostraRosa (depreciado)
*/

/*
 pegaCoordenadaUTM (depreciado)
*/
function pegaCoordenadaUTM()
{alert("pegaCoordenadaUTM foi depreciado utilize i3GEO.gadgets");i3GEO.gadgets.mostraCoordenadasUTM(g_locaplic,"mostraUTM");}
/*
 ativaLocalizarxy (depreciado)
*/
function ativaLocalizarxy(iddiv)
{alert("ativaLocalizarxy foi depreciado utilize i3GEO.gadgets");i3GEO.gadgets.mostraCoordenadasGEO(iddiv);}
/*
 ativaEscalaNumerica (depreciado)
*/
function ativaEscalaNumerica(iddiv)
{alert("ativaEscalaNumerica foi depreciado utilize i3GEO.gadgets");i3GEO.gadgets.mostraEscalaNumerica(iddiv);}
/*
 ativaBuscaRapida (depreciado)
*/
function ativaBuscaRapida(iddiv)
{alert("ativaBuscaRapida foi depreciado utilize i3GEO.gadgets");i3GEO.gadgets.mostraBuscaRapida(iddiv);}
/*
 buscaRapida (depreciado)
*/
function buscaRapida()
{i3geo_buscarapida()}
/*
 criaboxg (depreciado)
*/
function criaboxg()
{
	i3GEO.util.criaBox();
	i3GEO.util.criaPin();
	alert("criaboxg foi depreciado utilize i3GEO.util");
}
/*
 initJanelaZoom (depreciado)
*/
function initJanelaZoom(qual){
	i3GEO.barraDeBotoes.reativa(qual-1);
}
/*
 sobeferramentas(depreciado)
*/
function sobeferramentas()
{}
/*
 desceferramentas (depreciado)
*/
function desceferramentas()
{}
/*
 mostraRosaDosVentos (depreciado)
*/
function mostraRosaDosVentos()
{alert("mostraRosaDosVentos foi depreciado utilize i3GEO.navega");i3GEO.navega.mostraRosaDosVentos();}
/*
 mudaVisual (depreciado)
*/
function mudaVisual(visual)
{alert("visual foi depreciado utilize i3GEO.visual");i3GEO.gadgets.visual.troca(visual);}
/*
 visual (depreciado)
*/
function visual(iddiv)
{alert("visual foi depreciado utilize i3GEO.visual");i3GEO.gadgets.visual.inicia(iddiv);}
/*
 arvoreclick (depreciado)

Marca o checkbox de adição de temas

Parameters:

itemID - ID que identifica qual tema foi clicado. O ID é definido no arquivo .map e no arquivo menutemas/menutemas.xml
*/
function arvoreclick(itemID)
{
	if (itemID.search("tema") == 0)
	{
		if ($i(itemID).checked == true)
		{$i(itemID).checked = false;}
		else
		{$i(itemID).checked = true;}
	}
}
/*
 pegaTema (depreciado)

Pega o tema de um no na guia de temas.

Utilizado nas opções que operam sobre um tema específico.

Parameters:

celula - objeto que foi clicado

Returns:

Id do tema.
*/
function pegaTema(celula)
{
	var nos = celula.parentNode.childNodes;
	var tempi = nos.length;
	for (var no=0;no<tempi; no++){if (nos[no].type == "checkbox"){return nos[no].value;}}
}
/*
 gerafilmef (depreciado)
*/
function gerafilmef(qs)
{}
/*
 gravaQuadro (depreciado)
*/
function gravaQuadro(variavel,valor)
{i3GEO.gadgets.quadros.grava(variavel,valor);}
/*
 avancaQuadro (depreciado)
*/
function avancaQuadro()
{i3GEO.gadgets.quadros.avanca();}
/*
 zoomAnterior (depreciado)
*/
function zoomAnterior(){
}
/*
 zoomProximo (depreciado)

*/
function zoomProximo(){
}
/*
 opcoesQuadros (depreciado)
*/
function opcoesQuadros()
{}
/*
 filmef
*/
function filmef(o)
{}
/*
 rebobinaf (depreciado)
*/
function rebobinaf()
{}
/*
 filmezf (depreciado)
*/
function filmezf(o)
{}
/*
 quadrofilme (depreciado)
*/
function quadrofilme()
{}
/*
 filmeanimaf (depreciado)
*/
function filmeanimaf()
{}
/*
 filmeanimarodaf (depreciado)
*/
function filmeanimarodaf(janima)
{}
/*
 pegaimagens (depreciado)
*/
function pegaimagens()
{}
/*
Function calculaArea (depreciado)
*/
function calculaArea(pontos,pixel)
{return (i3GEO.calculo.area(pontos,pixel));}
/*
 calculadistancia (depreciado)
*/
function calculadistancia(lga,lta,lgb,ltb) //0ms
{return (i3GEO.calculo.distancia(lga,lta,lgb,ltb));}
/*
 initJanelaRef (depreciado)
*/
function initJanelaRef()
{i3GEO.maparef.inicia();}
/*
Variable: g_mapaRefDisplay (depreciado)
*/
/*
 atualizaReferencia (depreciado)
*/
/*
 ajaxReferencia (depreciado)
*/
function ajaxReferencia(retorno)
{i3GEO.maparef.processaImagem(retorno)}
/*
 clicouRef (depreciado)

Altera a abrangência do mapa quando o mapa de referência é clicado
*/
function clicouRef()
{}
/*
 movimentoRef (depreciado)

Pega a coordenada do cursor sobre o mapa de referência
*/
function movimentoRef(obj)
{}
/*
 mostraTip (depreciado)

Mostra a descrição de um elemento do mapa como uma etiqueta na posição do mouse.

Para que um tema tenha uma etiqueta, é necessário configurar o metadata TIP no map file.

Parameters:

retorno - retorno da função ajax com os dados para montar a etiqueta.
*/
function mostraTip(retorno)
{
	//insere div para tips
	if (!$i("tip")){
		var novoel = document.createElement("div");
		novoel.id = "tip";
		novoel.style.position="absolute";
		novoel.style.zIndex=5000;
		if (navm)
		{novoel.style.filter = "alpha(opacity=90)";}
		document.body.appendChild(novoel);
	}
	var i = $i("i3geo_rosa");
	if(i)
	i.style.display="none";
	var mostra = false;
	var retorno = retorno.data;
	if ((retorno != "erro") && (retorno != undefined))
	{
		if ($i("img"))
		{$i("img").title = "";}
		if (retorno != "")
		{
			var res = "<div id='cabecatip' style='text-align:left;background-color:rgb(240,240,240)'><span style='color:navy;cursor:pointer;text-align:left' onclick='javascript:objmapaparado=\"cancela\"'>parar&nbsp;&nbsp;</span>";
			res += "<span style='color:navy;cursor:pointer;text-align:left' onclick='javascript:i3GEO.janela.TIPS.push($i(\"tip\"));$i(\"tip\").id=\"\";$i(\"cabecatip\").innerHTML =\"\";$i(\"cabecatip\").id =\"\"' >fixar</span></div>";
			var temas = retorno.split("!");
			var tema = temas.length-1;
			if(tema >= 0)
			{
				do
				{
					var titulo = temas[tema].split("@");
					if (g_tipotip == "completo")
					{
						res += "<span style='text-align:left;font-size:9pt'><b>"+titulo[0]+"</b></span><br>";
					}
					var ocorrencias = titulo[1].split("*");
					var ocorrencia = ocorrencias.length-1;
					if(ocorrencia >= 0)
					{
						do
						{
							if (ocorrencias[ocorrencia] != "")
							{
								var pares = ocorrencias[ocorrencia].split("##");
								var paresi = pares.length;
								for (var par=0;par<paresi; par++)
								{
									var valores = pares[par].split("#");
									if (g_tipotip == "completo")
									{
										res = res + "<span class='tiptexto' style='text-align:left;font-size:9pt'>" + valores[0] + " <i>" + valores[1] + "</i></span><br>";
										var mostra = true;
									}
									else
									{
										res = res + "<span class='tiptexto' style='text-align:left;font-size:9pt'><i>" + valores[1] + "</i></span><br>";
										var mostra = true;
									}
								}
							}
						}
						while(ocorrencia--)
					}
				}
				while(tema--)
			}
			if(!mostra){$i("tip").style.display="none";return;}
			if ($i("janelaMen"))
			{$i("janelaMenTexto").innerHTML = res;}
			else
			{
				var i = $i("tip");
				i.innerHTML = "<table style='text-align:left'><tr><td style='text-align:left'>"+res+"</td></tr></table>";
				ist = i.style;
				ist.top = objposicaocursor.telay - 10;
				ist.left = objposicaocursor.telax - 20;
				ist.display="block";
			}
		}
	}
}
/*
 trataErro (depreciado)
*/
function trataErro()
{i3GEO.janela.fechaAguarde();}
/*
 mostraguiaf (depreciado)
*/
function mostraguiaf(guia)
{
	i3GEO.guias.mostra(guia);
	/*
	if ($i("guia"+guia))
	{
		var fs=[1,2,3,4,5,6,7,8,9,10,11,12];
		for (var j=0;j<10; j++)
		{
			if ($i("guia"+fs[j]))
			{
				jj = fs[j];
				if ($i("guia"+jj+"obj"))
				{$i("guia"+jj+"obj").style.display="none";}
				$i("guia"+fs[j]).parentNode.parentNode.style.background="transparent";
			}
		}
		if ($i("guia"+guia+"obj"))
		{
			$i("guia"+guia+"obj").style.display="block";
		}
		else
		{alert("O objeto guia"+guia+"obj nao existe.");}
		$i("guia"+guia).parentNode.parentNode.style.background="white";
	}
	*/
}
/*
 ativaGuias (depreciado)
*/
function ativaGuias()
{
	//YAHOO.log("ativaGuias", "i3geo");
	//ajusta as guias da versão antiga do YUI para a nova
	//
	//pega o elemento onde as guias serão colocadas
	//
	for(var g=0;g<12;g++)
	{
		if ($i("guia"+g))
		var gpai = $i("guia"+g).parentNode;
	}
	//
	//monta as guias
	//
	if(gpai)
	{
		gpai.id = "guiasYUI";
		gpai.className = "yui-navset";
		var ins = '<ul class="yui-nav" style="border-width:0pt 0pt 0px;border-color:rgb(240,240,240);border-bottom-color:white;">';
		//
		//define os títulos das guias padrão
		//
		try{
			if($i(objmapa.guiaTemas))
			{$i(objmapa.guiaTemas).innerHTML = $trad("g1");}
			if($i(objmapa.guiaMenu))
			{$i(objmapa.guiaMenu).innerHTML = $trad("g2");}
			if($i(objmapa.guiaLegenda))
			{$i(objmapa.guiaLegenda).innerHTML = $trad("g3");}
			if($i(objmapa.guiaListaMapas))
			{$i(objmapa.guiaListaMapas).innerHTML = $trad("g4");}
		}
		catch(e){};
		//
		//
		for(var g=0;g<12;g++)
		{
			if ($i("guia"+g))
			{
				//
				//pega os títulos das guias, inclusive as que não são padrão
				//
				var tituloguia = $i("guia"+g).innerHTML;
				//
				//remove os espaços em branco 
				//necessário para manter compatibilidade com versões antigas do i3geo
				//
				var re = new RegExp("&nbsp;", "g");
				var tituloguia = tituloguia.replace(re,'');
				//
				//monta o título das guias
				//
				ins += '<li><a href="#"><em><div id="guia'+g+'" >'+tituloguia+'</div></em></a></li>';
			}
		}
		ins += "</ul>";
		//
		//insere as guias em gpai
		//
		gpai.innerHTML = ins;
		for(var g=0;g<12;g++)
		{
			if ($i("guia"+g))
			{
				eval('$i("guia'+g+'").onclick = function(){g_guiaativa = "guia'+g+'";mostraguiaf('+g+');}');
				$i("guia"+g).onmouseover = function()
				{
					var bcg = this.parentNode.parentNode.style;
					var cor = bcg.background.split(" ")[0];
					if(cor != "white")
					bcg.background = "#bfdaff";
				};
				$i("guia"+g).onmouseout = function()
				{
					var bcg = this.parentNode.parentNode.style;
					var cor = bcg.background.split(" ")[0];
					if(cor != "white")
					bcg.background = "transparent";
				};
				if($i("guia"+g+"obj"))
				{
					$i("guia"+g+"obj").style.overflow="auto";
					$i("guia"+g+"obj").style.height = i3GEO.parametros.h;
				}
			}
		}
	}
	//
	//define a função que será executada quando o usuário clica em uma guia padrão
	//
	if ($i(objmapa.guiaTemas))
	{
		$i(objmapa.guiaTemas).onclick = function()
		{
			g_guiaativa = objmapa.guiaTemas;mostraguiaf(1);
		};
	}
	if ($i(objmapa.guiaMenu))
	{
		$i(objmapa.guiaMenu).onclick = function()
		{
			g_guiaativa = objmapa.guiaMenu;
			mostraguiaf(2);
			//pega a lista de árvores que devem ser montadas
			//é executado apenas se não existir o id=arvoreAdicionaTema
			//caso contrário, a árvore é montada na inicialização do i3geo
			if(!$i("arvoreAdicionaTema"))
			{var ondeArvore = objmapa.guiaMenu+"obj";}
			else
			{var ondeArvore = "arvoreAdicionaTema";}
			//
			//para efeitos de compatibilidade
			//
			if(document.getElementById("outrasOpcoesAdiciona"))
			{
				i3GEO.arvoreDeTemas.OPCOESADICIONAIS.idonde = "outrasOpcoesAdiciona";
				i3GEO.arvoreDeTemas.OPCOESADICIONAIS.incluiArvore = false;
			}
			//
			//cria a árvore
			//
			i3GEO.arvoreDeTemas.cria(i3GEO.configura.sid,i3GEO.configura.locaplic,ondeArvore);
		};
	}
	if($i(objmapa.guiaLegenda))
	{
		$i(objmapa.guiaLegenda).onclick = function()
		{g_guiaativa = objmapa.guiaLegenda;mostraguiaf(4);objmapa.atualizaLegendaHTML();};
	}
	if ($i(objmapa.guiaListaMapas))
	{
		$i(objmapa.guiaListaMapas).onclick = function()
		{
			g_guiaativa = objmapa.guiaListaMapas;
			mostraguiaf(5);
			if ($i("banners"))
			{
				$i("banners").innerHTML == $trad("o1");
				var p = i3GEO.configura.locaplic+"/classesphp/mapa_controle.php?funcao=pegaMapas&g_sid="+i3GEO.configura.sid;
				cpObj.call(p,"pegaMapas",pegaMapas);
			}
			else
			{alert("id banners nao encontrado");}
		};
	}
	//YAHOO.log("Fim ativaGuias", "i3geo");
}
/*
		//
		//altera o tamanho das guias
		//
		var temp = new Array("guiaTemas","guiaMenu","guiaLegenda");
		var i = temp.length-1;
		if (i >= 0)
		{
			do
			{
				eval("var s = objmapa."+temp[i]+"obj"); 
				if ($i(s))
				{
					var d = $i(s).style;
					d.style.overflow="auto";
					d.style.height = i3GEO.parametros.h-13;
					d.style.width = "100%";
				}
			}
			while(i--)
		}
*/
/*
 docaguias (depreciado)
*/
function docaguias()
{i3GEO.guias.libera();}
/*
 autoRedesenho (depreciado)
*/
function autoRedesenho(opcao)
{}
/*
Function movePan (depreciado)
*/
function movePan()
{alert("movePan foi depreciado")}
/*
Function selecao (depreciado)
*/
function selecao()
{}
/*
 cliqueSelecao (depreciado)
*/
function cliqueSelecao()
{}
/*
 zoomboxf (depreciado)
*/
function zoomboxf(tipo)
{}
/*
 i3geo_comboGruposMenu (depreciado)
*/
function i3geo_comboGruposMenu(funcaoOnchange,idDestino,idCombo,largura,altura)
{}
/*
 i3geo_comboSubGruposMenu (depreciado)
*/
function i3geo_comboSubGruposMenu(funcaoOnchange,idDestino,idCombo,idGrupo,largura,altura)
{}
/*
 i3geo_comboTemasMenu (depreciado)
*/
function i3geo_comboTemasMenu(funcaoOnchange,idDestino,idCombo,idGrupo,idSubGrupo,largura,altura)
{}
/*
 remapaf (depreciado)
*/
function remapaf()
{i3GEO.atualiza("");}
/*
 limpacontainerf (depreciado)
*/
function limpacontainerf()
{}
/*
 inseremarcaf (depreciado)
*/
function inseremarcaf(xi,yi,funcaoOnclick,container)
{i3GEO.utl.insereMarca.cria(xi,yi,funcaoOnclick,container)}
/*
Function moveSelecaoPoli (depreciado)
*/
function moveSelecaoPoli()
{}
/*
 cliqueSelecaoPoli (depreciado)
*/
function cliqueSelecaoPoli()
{}
/*
 capturaposicao (depreciado)
*/
function capturaposicao(e)
{alert("capturaposicao foi depreciado utilize i3GEO.eventos");}
/*
 ativaEntorno (depreciado)
*/
function ativaEntorno()
{}
/*
 geraURLentorno (depreciado)
*/
function geraURLentorno()
{}
/*
 ajustaEntorno
*/
function ajustaEntorno()
{}
/*
 lenteDeAumento (depreciado)
*/
function lenteDeAumento()
{alert("lenteDeAumento foi depreciado utilize i3GEO.navega.lente.ativaDesativa()")}
/*
 ajaxabrelente (depreciado)
*/
function ajaxabrelente(retorno)
{}
/*
 movelentef (depreciado)
*/
function movelentef()
{}
/*
 destacaTema (depreciado)
*/
function destacaTema(tema)
{alert("destacaTema foi depreciado utilize i3GEO.navega");}

/*
 ajaxdestaca (depreciado)
*/
function ajaxdestaca()
{alert("ajaxdestaca foi depreciado, utilize i3GEO.navega")}
/*
 ativaClicks (depreciado)
*/
function ativaClicks(docMapa)
{}
/*
 incluir (depreciado)
*/
function incluir(path)
{i3GEO.util.adicionaSHP(path);}
/*
 pontosdist(depreciado)
*/
function pontosdist()
{
	this.xpt = [];
	this.ypt = [];
	this.dist = [];
	this.xtela = [];
	this.ytela = [];
	this.ximg = [];
	this.yimg = [];
	this.linhas = [];
}
/*
 mudaiconf (depreciado)
*/
function mudaiconf(i)
{i3GEO.barraDeBotoes.ativaIcone(i);}
/*
 calcposf (depreciado)
*/
function calcposf()
{i3GEO.mapa.ajustaPosicao();}
/*
 recuperamapa (depreciado)
*/
function recuperamapa()
{}
/*
 criaContainerRichdraw
*/
function criaContainerRichdraw()
{alert("criaContainerRichdraw foi depreciado utilize i3GEO.desenho");}
/*
 desenhoRichdraw (depreciado)
*/
function desenhoRichdraw(tipo,objeto,n)
{}
/*
 ajaxhttp (depreciado)

Cria o objeto http utilizado nas funções Ajax.

Returns:

Objeto httprequest.

See Also:

<ajaxexecAS>
*/
function ajaxhttp()
{
	try
	{var objhttp1 = new XMLHttpRequest();}
	catch(ee)
	{
		try{var objhttp1 = new ActiveXObject("Msxml2.XMLHTTP");}
		catch(e)
		{
			try{var objhttp1 = new ActiveXObject("Microsoft.XMLHTTP");}
			catch(E)
			{var objhttp1 = false;}
		}
	}
	return(objhttp1);
}
/*
 ajaxexecAS (depreciado)

Executa uma chamada ajax no modo assíncrono.

Parameters:

programa - programa que será executado.
funcao - função que tratará o resultado.

Returns:

O resultado em uma variável. Se o retorno contiver a palavra "Erro", é gerado um alert.

See Also:

<ajaxhttp>
*/
function ajaxexecAS(programa,funcao)
{
	var ohttp = ajaxhttp();
	ohttp.open("POST",programa,true);
	var retorno = "";
	ohttp.onreadystatechange=function()
	{
		if (ohttp.readyState==4)
		{
			retorno = ohttp.responseText;
			var reg = /Warning/gi;
			if (retorno.search(reg) != -1)
			{
				alert("OOps! Ocorreu um erro\n"+retorno);
				return;
			}
			var reg = /erro/gi;
			if (retorno.search(reg) != -1)
			{
				alert("OOps! Ocorreu um erro\n"+retorno);
				return;
			}
			if (funcao != "volta")
			{eval(funcao+'("'+retorno+'")');}
		}
	};
	ohttp.send(null);
}
/*
 ajaxexec (depreciado)

Executa uma chamada ajax no modo síncrono.

Parameters:

programa - programa que será executado.
funcao - função que tratará o resultado.

Returns:

O resultado em uma variável. Se o retorno contiver a palavra "Erro", é gerado um alert.

See Also:

<ajaxhttp>
*/
function ajaxexec(programa,funcao)
{
	var objhttp = ajaxhttp();
	objhttp.open('GET', programa, false);
	objhttp.send(null);
	if(objhttp.status == 200)
	{
		if (funcao != "volta")
		{eval(funcao+'("'+objhttp.responseText+'")');}
		else
		{return objhttp.responseText;}
	}
}
/*
 ajaxLegendaHTML (depreciado)
*/
function ajaxLegendaHTML(retorno)
{}
/*
 ajaxLegendaImagem (depreciado)
*/
function ajaxLegendaImagem(retorno)
{}
/*
 mede (depreciado)
*/
function mede()
{}
/*
 cliqueMede (depreciado)
*/
function cliqueMede()
{}
/*
Function moveMede (depreciado)
*/
function moveMede()
{}
/*
 area (depreciado)
*/
function area()
{}
/*
 cliqueArea (depreciado)
*/
function cliqueArea()
{}
/*
Function moveArea (depreciado)
*/
function moveArea()
{}
/*
 textofid (depreciado)
*/
function textofid()
{}
/*
 inserexy (depreciado)
*/
function inserexy()
{}
/*
 cliqueInseretoponimo (depreciado)
*/
function cliqueInseretoponimo()
{}
/*
 cliqueInserexy (depreciado)
*/
function cliqueInserexy()
{}
/*
 inseregrafico (depreciado)
*/
function inseregrafico()
{}
/*
 cliqueInseregrafico (depreciado)
*/
function cliqueInseregrafico()
{}
/*
 ativaHistoricoZoom (depreciado)
*/
function ativaHistoricoZoom(iddiv)
{}
function ajaxhttp(){
	return i3GEO.util.ajaxhttp();
}
/*
 ajaxCorpoMapa (depreciado)
*/
function ajaxCorpoMapa(retorno)
{i3GEO.mapa.corpo.veirifca(retorno);}
/*
 ajaxredesenha (depreciado)
*/
function ajaxredesenha(retorno)
{i3GEO.atualiza(retorno);}
/*
 ajaxIniciaParametros (depreciado)
*/
function ajaxIniciaParametros(retorno)
{i3GEO.atualiza(retorno);}
/*
montaMenuSuspenso (depreciado)
*/
function montaMenuSuspenso(iddiv){
	i3GEO.gadgets.PARAMETROS.mostraMenuSuspenso.idhtml = iddiv;
	i3GEO.gadgets.mostraMenuSuspenso();
}

//YAHOO.log("carregou depreciados", "Classes i3geo");