// JavaScript Document
function fn_TrocaEstrutura0(linha, selecionado){
	for(var x = 1; x <= 4 ; x++){
		document.getElementById('rd'+linha+'_'+x).checked=false;
		document.getElementById('sl'+linha+'_'+x).src='../img/layout/trans.gif';
	}
	if(document.getElementById('rd'+linha+'_14')){
		document.getElementById('rd'+linha+'_14').checked=false;
		document.getElementById('sl'+linha+'_14').src='../img/layout/trans.gif';
	}
	if(document.getElementById('rd'+linha+'_17')){
		document.getElementById('rd'+linha+'_17').checked=false;
		document.getElementById('sl'+linha+'_17').src='../img/layout/trans.gif';
	}
	document.getElementById('rd'+linha+'_'+selecionado).checked=true;
	document.getElementById('sl'+linha+'_'+selecionado).src='../img/layout/trans_mark.gif';
}
function fn_TrocaEstrutura(linha, selecionado){
	for(var x = 1; x <= 4 ; x++){
		document.getElementById('rd'+linha+'_'+x).checked=false;
		document.getElementById('sl'+linha+'_'+x).src='../img/layout/trans.gif';
	}
	document.getElementById('rd'+linha+'_'+selecionado).checked=true;
	document.getElementById('sl'+linha+'_'+selecionado).src='../img/layout/trans_mark.gif';
}

function IMG_OVER(OBJ, texto, target){
	if(texto != ''){
		OBJ.style.border = '#000000 solid 3px';
		document.getElementById('TXT_'+target).innerHTML = texto;
		document.getElementById(target).style.visibility = 'visible';
	}
}

function IMG_OUT(OBJ, target){
	OBJ.style.border = '#FFFFFF solid 3px';
	document.getElementById('TXT_'+target).innerHTML = '';
	document.getElementById(target).style.visibility = 'hidden';
}

function linki(){
	document.execCommand("CreateLink");
}

function text(origem, destino){
	document.getElementById(origem).value = document.getElementById(destino).innerHTML;
}

function tr_territorio(arquivo){
	document.getElementById('IMAGEM').src = arquivo.split('_PQ').join('_GD');
}

function pop_(arquvio){
	window.open('pop.asp?arquivo=' + arquvio.split('_PQ').join('_GD') ,'_00','width=500px, height=300px, toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no'); 
}

function redimensiona(){
		parent.xGetElementById("iframeInfo").height = document.body.scrollHeight;
		//parent.xGetElementById("iframeInfo").width = document.body.scrollWidth; 
}