
function confirmar_borrado(texto) 
{ 
   if(!confirm("Esta seguro que desea borrar "+texto)) 
	   return false;
   else 
	  return true;
}

function cambiar_FotoFast(obj, imgId)
{
	imgObj = document.getElementById(imgId);
	imgObj.src = "../paquetes/"+obj.options[obj.selectedIndex].value;
	
}

