this.throw_import = function () {
	var oAjax = new WBE_AjaxClass();
	oAjax.clear();
	oAjax.async = true;
	//oAjax.addPostParameter("ver_id", sVerId); No hay parametros por el momento
	oAjax.throwEvent2("sarc_import_teuladi");
};


function prioridad(total)
{

document.getElementById('campo_prioridad').value = "";

var fila; var titulo; var valor;

	for(var x=1; x <= total; x++)
	{
		fila =document.getElementById("fila["+x+"]"); 
		titulo =document.getElementById("titulo["+x+"]"); 
		valor =document.getElementById("pri["+x+"]"); 

		if (titulo.checked) document.getElementById('campo_prioridad').value += ""+fila.value+" ("+valor.value+"), ";

	}	

}



