function buscaModelo(categoriaID) {
	//alert("teste");
	var tempIFrame							= document.createElement('iframe');
	
	tempIFrame.setAttribute('id','iframeEquip');
	tempIFrame.setAttribute('name','iframeEquip');

	tempIFrame.style.border					= '0px';
	tempIFrame.style.width					= '0px';
	tempIFrame.style.height					= '0px';

	tempIFrame.setAttribute('src','http://www.acilweber.com.br/ajax/verificarEquipamento.asp?categoriaID='+categoriaID);
	
	IFrameObj								= document.body.appendChild(tempIFrame);
	
}

function buscaEquipamento(representadaID) {

	var tempIFrame							= document.createElement('iframe');
	
	tempIFrame.setAttribute('id','iframeEquip');
	tempIFrame.setAttribute('name','iframeEquip');

	tempIFrame.style.border					= '0px';
	tempIFrame.style.width					= '0px';
	tempIFrame.style.height					= '0px';

	tempIFrame.setAttribute('src','ajax/modeloEquipamento.asp?representadaID='+representadaID);
	
	IFrameObj								= document.body.appendChild(tempIFrame);
}

