function showGIS(inte){
	var sty= document.getElementById("showGis").style.display;
	if(sty!="block"){
		document.getElementById("showGis").style.display="block";
	}
	Company.findGisByInduId(inte,setRequestGIS);
}

function setRequestGIS(data){
	document.getElementById("showGis").innerHTML=data;
}

function changeSrc(inte,index){
	var sty= document.getElementById("divgis"+index).style.display;
	if(sty!="block"){
		document.getElementById("divgis"+index).style.display="block";
		//alert(inte);
		document.getElementById("divgis"+index).innerHTML="<a href=\"/gis.jsp?id="+inte+"\" target=\"_blank\"><img src=\"/gis/gisAction.do?method=getMap&id="+inte+"&"+Math.random()+"\" width=\"683px\" height=\"418px\"/></a>";
	}else document.getElementById("divgis"+index).style.display="none";
	
}


function showGISXml(id){
	var sty= document.getElementById("showGisXml"+id).style.display;
	if(sty!="block"){
		document.getElementById("showGisXml"+id).style.display="block";
	}
}

function showBigGISXml(id){
     document.getElementById("xform"+id).action="ec_gis/showBigGis.jsp";
	 document.getElementById("xform"+id).target="_blank";
	 document.getElementById("xform"+id).submit();
}

