// JavaScript Document
function buscaModelo(categoriaID) {

	var tempIFrame							= document.createElement('iframe');
	
	tempIFrame.setAttribute('id','iframe_cep');
	tempIFrame.setAttribute('name','iframe_cep');

	tempIFrame.style.border					= '0px';
	tempIFrame.style.width					= '0px';
	tempIFrame.style.height					= '0px';

	tempIFrame.setAttribute('src','ajax/verificarEquipamento.asp?categoriaID='+categoriaID);
	
	IFrameObj								= document.body.appendChild(tempIFrame);
}

function preencherModelo(id1,nome) {
	var array_id 				= id1.split("|");
	var array_nome 				= nome.split("|");
	
	var selec					= eval('document.frmEquipamentos.moduloID');
	
	if (id1.length != 0) {

		/*#LIMPAR CAIXA#*/
		for (var x = selec.length; x >= 0; x--) {
			selec.options[x]	= null;
		}	

		/*#INSERE NOVOS#*/
		var n = 1;
		selec.options[0] 		= new Option('Selecione uma opção', '0');

		for (var t = 0; t < (array_id.length)-1 ; t++) {
			selec.options[n] 	= new Option(array_nome[t], array_id[t]);
			n++;
		}
	}	else	{
			selec.options[0] 	= new Option('Selecione uma opção', '0');	
	}
}

function linkSelect(ID){
	location.href = "default.asp?act=1&ID=1&proID="+ID+"#equipamentos";
}